File tree 3 files changed +26
-7
lines changed
app/App_Resources/Android
3 files changed +26
-7
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ install:
37
37
- npm install
38
38
- npm run tslint
39
39
- cd ../tests
40
+ - npm i appium@APPIUM_VERSION
40
41
- npm install
41
42
before_script :
42
43
- echo no | android create avd --force -n test -t android-$EMULATOR_API_LEVEL --abi $ANDROID_ABI
Original file line number Diff line number Diff line change
1
+ // Add your native dependencies here:
2
+
3
+ // Uncomment to add recyclerview-v7 dependency
4
+ // dependencies {
5
+ // compile 'com.android.support:recyclerview-v7:+'
6
+ // }
7
+
8
+ android {
9
+ defaultConfig {
10
+ generatedDensities = []
11
+ applicationId = " org.nativescript.tests"
12
+
13
+ // override supported platforms
14
+ // ndk {
15
+ // abiFilters.clear()
16
+ // abiFilters "armeabi-v7a"
17
+ // }
18
+
19
+ }
20
+ aaptOptions {
21
+ additionalParameters " --no-version-vectors"
22
+ }
23
+ }
Original file line number Diff line number Diff line change 56
56
"karma-nativescript-launcher" : " ^0.4.0" ,
57
57
"lazy" : " 1.0.11" ,
58
58
"mocha" : " ^2.4.5" ,
59
- "nativescript-dev-appium" : " 0.4.0" ,
59
+ "nativescript-dev-appium" : " ^ 0.4.0" ,
60
60
"nativescript-dev-typescript" : " ^0.4.0" ,
61
61
"socket.io" : " 1.4.8" ,
62
62
"socket.io-client" : " 1.4.8" ,
63
63
"tslint" : " ^4.5.1" ,
64
64
"typescript" : " ~2.2.0" ,
65
- "wd" : " 0.4 .0"
65
+ "wd" : " ^1.2 .0"
66
66
},
67
67
"scripts" : {
68
- "updateTests" : " grunt updateTests" ,
69
- "appium-android" : " tns build android && npm run run-appium-android" ,
70
- "run-appium-android" : " nativescript-dev-appium android" ,
71
- "appium-ios-simulator" : " tns build ios && nativescript-dev-appium ios-simulator" ,
72
- "tslint" : " tslint --project tsconfig.json --config tslint.json" ,
73
68
"appium" : " nativescript-dev-appium"
74
69
}
75
70
}
You can’t perform that action at this time.
0 commit comments