Skip to content

Commit 74e3467

Browse files
committed
k
1 parent b244b9a commit 74e3467

File tree

107 files changed

+752
-269
lines changed

Some content is hidden

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

107 files changed

+752
-269
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,4 +208,7 @@ nativescript-fab.sln
208208
demo/platforms/*
209209
demo/lib/*
210210

211-
/*.js
211+
src/*.js
212+
/*.js
213+
demo/node_modules/
214+
node_modules/

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

demo/.DS_Store

8 KB
Binary file not shown.

demo/app/.DS_Store

6 KB
Binary file not shown.

demo/app/App_Resources/.DS_Store

6 KB
Binary file not shown.
6 KB
Binary file not shown.

demo/app/App_Resources/Android/AndroidManifest.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="__PACKAGE__"
3+
xmlns:tools="http://schemas.android.com/tools"
4+
package="org.nativescript.floatingactionbutton"
45
android:versionCode="1"
56
android:versionName="1.0">
67

@@ -20,10 +21,11 @@
2021

2122
<application
2223
android:name="com.tns.NativeScriptApplication"
23-
android:allowBackup="true"
24+
android:allowBackup="false"
2425
android:icon="@drawable/icon"
2526
android:label="@string/app_name"
26-
android:theme="@style/AppTheme" >
27+
android:theme="@style/AppTheme"
28+
tools:replace="android:allowBackup">
2729
<activity
2830
android:name="com.tns.NativeScriptActivity"
2931
android:label="@string/title_activity_kimera"
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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.floatingactionbutton"
12+
}
13+
aaptOptions {
14+
additionalParameters "--no-version-vectors"
15+
}
16+
}
3.42 KB

0 commit comments

Comments
 (0)