Skip to content

Commit 7ec91a6

Browse files
committed
tuning to whitelist
1 parent 58f8586 commit 7ec91a6

File tree

4 files changed

+18
-34
lines changed

4 files changed

+18
-34
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ reporter/
1717
*.sw*
1818
*.un~
1919
*.exec
20+
*.gz

.npmignore

-33
This file was deleted.

index.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
'use strict';
2+
3+
const path = require('path');
4+
5+
exports.appPath = path.join(
6+
__dirname,
7+
'android_app_bootstrap',
8+
'build',
9+
'outputs',
10+
'apk',
11+
'android_app_bootstrap-debug.apk'
12+
);

package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
{
22
"name": "android-app-bootstrap",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"description": "A starting tutorial for Android application.",
55
"keywords": [
66
"Android"
77
],
8+
"files": [
9+
"android_app_bootstrap/build/outputs/apk/android_app_bootstrap-debug.apk",
10+
"index.js"
11+
],
812
"repository": {
913
"type": "git",
1014
"url": "git://github.com/xudafeng/android-app-bootstrap.git"

0 commit comments

Comments
 (0)