Skip to content

Commit ac8b168

Browse files
committed
2.4 App_Resources
1 parent 03d031a commit ac8b168

Some content is hidden

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

74 files changed

+508
-5
lines changed

demo/app/App_Resources/Android/AndroidManifest.xml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,18 @@
2323
android:allowBackup="true"
2424
android:icon="@drawable/icon"
2525
android:label="@string/app_name"
26-
android:theme="@style/AppTheme" >
26+
android:theme="@style/AppTheme">
27+
2728
<activity
2829
android:name="com.tns.NativeScriptActivity"
2930
android:label="@string/title_activity_kimera"
30-
android:configChanges="keyboardHidden|orientation|screenSize">
31+
android:configChanges="keyboardHidden|orientation|screenSize"
32+
android:theme="@style/LaunchScreenTheme">
3133

32-
<intent-filter>
33-
<action android:name="android.intent.action.MAIN" />
34+
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" />
3435

36+
<intent-filter>
37+
<action android:name="android.intent.action.MAIN" />
3538
<category android:name="android.intent.category.LAUNCHER" />
3639
</intent-filter>
3740
</activity>

demo/app/App_Resources/Android/app.gradle

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,21 @@
33
// Uncomment to add recyclerview-v7 dependency
44
//dependencies {
55
// compile 'com.android.support:recyclerview-v7:+'
6-
//}
6+
//}
7+
8+
android {
9+
defaultConfig {
10+
generatedDensities = []
11+
applicationId = "__PACKAGE__"
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

demo/app/App_Resources/Android/drawable-hdpi/icon.png

100644100755
File mode changed.
32.4 KB
1.31 KB

demo/app/App_Resources/Android/drawable-ldpi/icon.png

100644100755
File mode changed.
9.95 KB
1.89 KB

demo/app/App_Resources/Android/drawable-mdpi/icon.png

100644100755
File mode changed.

0 commit comments

Comments
 (0)