Skip to content

Commit f0657ba

Browse files
committed
chore: make verified
1 parent c58797c commit f0657ba

File tree

95 files changed

+1279
-11
lines changed

Some content is hidden

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

95 files changed

+1279
-11
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
.DS_Store
22

33
*.js.map
4+
*.esm.json
5+
*.config.js
46

57
coverage
68
lib-cov
@@ -32,6 +34,14 @@ demo/node_modules
3234
demo/lib
3335
demo/hooks
3436
demo/app/**/*.css
37+
38+
demo-angular/platforms
39+
demo-angular/node_modules
40+
demo-angular/lib
41+
demo-angular/hooks
42+
demo-angular/app/**/*.css
43+
demo-angular/**/*.js
44+
3545
npm-debug.log
3646
node_modules
3747
docs/html

.travis.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
matrix:
2+
include:
3+
- stage: "WebPack, Build and Test"
4+
os: osx
5+
env:
6+
- WebPack="iOS"
7+
osx_image: xcode9.2
8+
language: node_js
9+
node_js: "6"
10+
jdk: oraclejdk8
11+
script: cd demo && npm i && tns build ios --bundle --env.uglify && cd ../demo-angular && npm i && tns build ios --bundle --env.uglify
12+
- language: android
13+
os: linux
14+
env:
15+
- WebPack="Android"
16+
jdk: oraclejdk8
17+
before_install: nvm install 6.10.3
18+
script: cd demo && npm run build.plugin && npm i && tns build android --bundle --env.uglify --env.snapshot && cd ../demo-angular && tns build android --bundle --env.uglify --env.snapshot
19+
- language: android
20+
env:
21+
- BuildAndroid="26"
22+
os: linux
23+
jdk: oraclejdk8
24+
before_install: nvm install stable
25+
script:
26+
- cd src && npm i && npm run tsc && cd ../demo && tns build android && cd ../demo-angular && tns build android
27+
- os: osx
28+
env:
29+
- BuildiOS="11"
30+
- Xcode="9.2"
31+
osx_image: xcode9.2
32+
language: node_js
33+
node_js: "6"
34+
jdk: oraclejdk8
35+
script:
36+
- cd src && npm i && npm run tsc && cd ../demo && tns build ios && cd ../demo-angular && tns build ios
37+
38+
android:
39+
components:
40+
- tools
41+
- platform-tools
42+
- build-tools-26.0.2
43+
- android-26
44+
- android-23
45+
- extra-android-m2repository
46+
- sys-img-armeabi-v7a-android-21
47+
48+
install:
49+
- echo no | npm install -g nativescript
50+
- tns usage-reporting disable
51+
- tns error-reporting disable

DevelopmentWorkflow.md

Lines changed: 8 additions & 2 deletions

README.md

Lines changed: 13 additions & 2 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="10000"
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: 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.demoangular"
12+
}
13+
aaptOptions {
14+
additionalParameters "--no-version-vectors"
15+
}
16+
}
3.42 KB
6.04 KB
32.4 KB
1.31 KB

0 commit comments

Comments
 (0)