| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 1a0c81f commit 9fcc1dd
116 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | 1 | { | |
| 2 | 2 | "name": "tns-samples-apps", | |
| 3 | - "main": "perf-app/app.js" | ||
| 3 | + "main": "ui-tests-app/app.js" | ||
| 4 | 4 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,35 @@ | |||
| 1 | + mochawesome-report | ||
| 2 | + | ||
| 3 | + # NativeScript | ||
| 4 | + hooks/ | ||
| 5 | + node_modules/ | ||
| 6 | + platforms/ | ||
| 7 | + | ||
| 8 | + # NativeScript Template | ||
| 9 | + *.js.map | ||
| 10 | + *.js | ||
| 11 | + !webpack.config.js | ||
| 12 | + | ||
| 13 | + # Logs | ||
| 14 | + logs | ||
| 15 | + *.log | ||
| 16 | + npm-debug.log* | ||
| 17 | + yarn-debug.log* | ||
| 18 | + yarn-error.log* | ||
| 19 | + | ||
| 20 | + # General | ||
| 21 | + .DS_Store | ||
| 22 | + .AppleDouble | ||
| 23 | + .LSOverride | ||
| 24 | + .idea | ||
| 25 | + .cloud | ||
| 26 | + .project | ||
| 27 | + tmp/ | ||
| 28 | + typings/ | ||
| 29 | + | ||
| 30 | + # Visual Studio Code | ||
| 31 | + .vscode/* | ||
| 32 | + !.vscode/settings.json | ||
| 33 | + !.vscode/tasks.json | ||
| 34 | + !.vscode/launch.json | ||
| 35 | + !.vscode/extensions.json | ||
| Original file line number | Diff line number | Diff 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> | ||
| Original file line number | Diff line number | Diff 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.animation" | ||
| 12 | + } | ||
| 13 | + aaptOptions { | ||
| 14 | + additionalParameters "--no-version-vectors" | ||
| 15 | + } | ||
| 16 | + } | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments