Skip to content

Commit efd4ef6

Browse files
Add 'e2e/routable-animations/' from commit '274468855154d9262d0df18957e8611f84873ad6'
git-subtree-dir: e2e/routable-animations git-subtree-mainline: 190780e git-subtree-split: 2744688
2 parents 190780e + 2744688 commit efd4ef6

File tree

100 files changed

+1068
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+1068
-0
lines changed

e2e/routable-animations/.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
**/.DS_Store
2+
3+
hooks
4+
node_modules
5+
platforms
6+
7+
app/**/*.js
8+
e2e/**/*.js
9+
e2e/**/*.map
10+
e2e/reports/
11+
test-results.xml
12+
13+
# Webpack files
14+
tsconfig.esm.json
15+
webpack.config.js
16+
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "launch",
7+
"name": "Mocha Tests",
8+
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
9+
"args": [
10+
"-u",
11+
"tdd",
12+
"--timeout",
13+
"999999",
14+
"--colors",
15+
"--opts", "./e2e/config/mocha.opts",
16+
"--runType", "sim.iPhone8",
17+
"--attachToDebug",
18+
"--port",
19+
"8300"
20+
],
21+
"internalConsoleOptions": "openOnSessionStart"
22+
},
23+
{
24+
"name": "Launch on iOS",
25+
"type": "nativescript",
26+
"request": "launch",
27+
"platform": "ios",
28+
"appRoot": "${workspaceRoot}",
29+
"sourceMaps": true,
30+
"watch": true
31+
},
32+
{
33+
"name": "Attach on iOS",
34+
"type": "nativescript",
35+
"request": "attach",
36+
"platform": "ios",
37+
"appRoot": "${workspaceRoot}",
38+
"sourceMaps": true,
39+
"watch": false
40+
},
41+
{
42+
"name": "Launch on Android",
43+
"type": "nativescript",
44+
"request": "launch",
45+
"platform": "android",
46+
"appRoot": "${workspaceRoot}",
47+
"sourceMaps": true,
48+
"watch": true
49+
},
50+
{
51+
"name": "Attach on Android",
52+
"type": "nativescript",
53+
"request": "attach",
54+
"platform": "android",
55+
"appRoot": "${workspaceRoot}",
56+
"sourceMaps": true,
57+
"watch": false
58+
}
59+
]
60+
}

e2e/routable-animations/README.md

Lines changed: 3 additions & 0 deletions
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="__PACKAGE__"
4+
android:versionCode="1"
5+
android:versionName="1.0">
6+
7+
<supports-screens
8+
android:smallScreens="true"
9+
android:normalScreens="true"
10+
android:largeScreens="true"
11+
android:xlargeScreens="true"/>
12+
13+
<uses-sdk
14+
android:minSdkVersion="17"
15+
android:targetSdkVersion="__APILEVEL__"/>
16+
17+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
18+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
19+
<uses-permission android:name="android.permission.INTERNET"/>
20+
21+
<application
22+
android:name="com.tns.NativeScriptApplication"
23+
android:allowBackup="true"
24+
android:icon="@drawable/icon"
25+
android:label="@string/app_name"
26+
android:theme="@style/AppTheme">
27+
28+
<activity
29+
android:name="com.tns.NativeScriptActivity"
30+
android:label="@string/title_activity_kimera"
31+
android:configChanges="keyboardHidden|orientation|screenSize"
32+
android:theme="@style/LaunchScreenTheme">
33+
34+
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" />
35+
36+
<intent-filter>
37+
<action android:name="android.intent.action.MAIN" />
38+
<category android:name="android.intent.category.LAUNCHER" />
39+
</intent-filter>
40+
</activity>
41+
<activity android:name="com.tns.ErrorReportActivity"/>
42+
</application>
43+
</manifest>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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.nsroanimations"
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+
}
3.42 KB
10.7 KB
32.4 KB
1.31 KB
6.03 KB

0 commit comments

Comments
 (0)