Skip to content

Commit

Permalink
update gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
teble committed Nov 27, 2023
1 parent ff2f789 commit 321c643
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}
dependencies {
classpath("com.android.tools.build:gradle:7.4.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20")
}
}

Expand Down
6 changes: 3 additions & 3 deletions demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ plugins {

android {
namespace 'org.luckypray.dexkit.demo'
compileSdk 33
compileSdk 34

defaultConfig {
applicationId "org.luckypray.dexkit.demo"
minSdk 21
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0"

Expand Down Expand Up @@ -38,5 +38,5 @@ dependencies {
compileOnly 'de.robv.android.xposed:api:82'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'org.luckypray:dexkit:2.0.0-rc7'
implementation 'org.luckypray:dexkit:2.0.0-rc8'
}
11 changes: 8 additions & 3 deletions dexkit-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ def libVersion = "2.0.0-rc8"

android {
namespace "org.luckypray.dexkit"
compileSdk 33
compileSdk 34
ndkVersion = "26.1.10909125"

defaultConfig {
minSdk 21
targetSdk 33
targetSdk 34

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down Expand Up @@ -110,7 +110,12 @@ tasks.withType(KotlinCompile).configureEach {

dependencies {
implementation 'com.google.flatbuffers:flatbuffers-java:23.5.26'
implementation "dev.rikka.ndk.thirdparty:cxx:1.2.0"
implementation 'dev.rikka.ndk.thirdparty:cxx:1.2.0'
implementation('org.jetbrains.kotlin:kotlin-stdlib') {
version {
require '1.5.0'
}
}
}

mavenPublishing {
Expand Down

0 comments on commit 321c643

Please sign in to comment.