Skip to content
Open
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
72 changes: 49 additions & 23 deletions publish/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
*.ts
!feedback.*.d.ts
!index.d.ts
tsconfig.json
platforms/android/res
tsconfig.json
8 changes: 4 additions & 4 deletions src/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "nativescript-feedback",
"version": "2.0.0",
"version": "3.0.3",
"description": "Non-blocking textual feedback for your NativeScript app. AKA superfancy Toasts!",
"main": "feedback",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "7.0.0",
"ios": "7.0.0"
"android": "8.0.0",
"ios": "8.0.0"
}
},
"scripts": {
Expand Down Expand Up @@ -67,4 +67,4 @@
"tslint": "^5.11.0",
"semver": "^5.5.0"
}
}
}
9 changes: 7 additions & 2 deletions src/platforms/android/include.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
repositories {
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}

dependencies {
def supportVer = "27.0.1"
if (project.hasProperty("supportVersion")) {
supportVer = supportVersion
}
def kotlinVer = "1.7.10"
if (project.hasProperty("kotlinVersion")) {
kotlinVer = kotlinVersion
}
implementation "com.android.support:appcompat-v7:$supportVer"
implementation "com.tapadoo.android:alerter:6.1.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.3.72"
implementation "com.github.tapadoo:Alerter:7.2.4"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVer"
}