Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*.js.map
*.log
*.esm.json
*.tns.json
logs
!src/scripts/*.js
demo/**/*.js
Expand Down
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ matrix:
script: cd demo && npm run build.plugin && npm i && tns build android --bundle --env.uglify --env.snapshot
- os: linux
env:
- BuildAndroid="26"
- BuildAndroid="28"
language: android
jdk: oraclejdk8
before_install: nvm install 8.11.4
Expand Down Expand Up @@ -70,12 +70,10 @@ matrix:

android:
components:
- tools
- tools
- platform-tools
- build-tools-27.0.3
- android-26
- android-23
- build-tools-28.0.2
- android-28
- extra-android-m2repository
- sys-img-armeabi-v7a-android-21

Expand Down
12 changes: 6 additions & 6 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
"nativescript": {
"id": "org.nativescript.demo",
"tns-android": {
"version": "4.2.0"
"version": "5.0.0"
},
"tns-ios": {
"version": "4.2.0"
"version": "5.0.0"
}
},
"dependencies": {
"nativescript-geolocation": "../src",
"nativescript-theme-core": "^1.0.4",
"nativescript-toast": "^1.4.6",
"nativescript-unit-test-runner": "^0.3.4",
"tns-core-modules": "^4.2.0"
"tns-core-modules": "^5.0.1"
},
"devDependencies": {
"jasmine-core": "^2.5.2",
Expand All @@ -22,13 +22,13 @@
"karma-nativescript-launcher": "^0.4.0",
"nativescript-css-loader": "~0.26.0",
"nativescript-dev-typescript": "~0.7.2",
"nativescript-dev-webpack": "~0.15.1",
"tns-platform-declarations": "^4.2.0",
"nativescript-dev-webpack": "~0.17.0",
"tns-platform-declarations": "^5.0.0",
"tslint": "~5.11.0",
"typescript": "~2.8.2"
},
"scripts": {
"ci.tslint": "npm i && tslint --config '../tslint.json' 'app/**/*.ts' --exclude '**/node_modules/**'",
"build.plugin": "cd ../src && npm run build"
}
}
}
8 changes: 4 additions & 4 deletions src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@
"homepage": "https://github.com/NativeScript/nativescript-geolocation",
"readmeFilename": "README.md",
"devDependencies": {
"tns-core-modules": "^3.0.0",
"tns-platform-declarations": "^3.0.0",
"typescript": "~2.7.2",
"tns-core-modules": "^5.0.1",
"tns-platform-declarations": "^5.0.0",
"typescript": "~2.8.2",
"prompt": "~1.0.0",
"rimraf": "~2.6.2",
"tslint": "~5.4.3"
"tslint": "~5.11.0"
},
"dependencies": {
"nativescript-permissions": "~1.2.3"
Expand Down