Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftrot committed May 6, 2024
1 parent 530f2f0 commit 81a4a05
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 14 deletions.
17 changes: 8 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ buildscript {
'compileSdk' : 34,
'targetSdk' : 28,
'minSdk' : 21,
// 'NDK' : '21.4.7075529',
'sourceCompatibility' : JavaVersion.VERSION_1_8,
'targetCompatibility' : JavaVersion.VERSION_1_8,
'jvmTarget' : "1.8"
Expand All @@ -23,15 +22,15 @@ buildscript {
'annotation' : '1.6.0',
'appcompat' : '1.6.1',
'constraintlayout' : '2.1.4',
'core_ktx' : '1.12.0',
'core_ktx' : '1.13.1',
'documentfile' : '1.0.1',
'drawerlayout' : '1.2.0',
'fragment_ktx' : '1.6.2',
'kotlin' : '1.9.0',
'material' : '1.10.0',
'fragment_ktx' : '1.7.0',
'kotlin' : '1.9.20',
'material' : '1.12.0',
'preference' : '1.2.1',
'vectordrawable' : '1.1.0',
'webkit' : '1.9.0',
'vectordrawable' : '1.2.0',
'webkit' : '1.11.0',
'kotlin_coroutines': '1.4.1',
'kotlin_coroutines_core': '1.3.7',
]
Expand All @@ -42,7 +41,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:8.1.4'
classpath 'com.android.tools.build:gradle:8.3.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
}
}
Expand Down Expand Up @@ -72,5 +71,5 @@ subprojects {
}

tasks.register('clean') {
delete rootProject.buildDir
delete File.getBuildDir()
}
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,5 @@ android.enableJetifier=false
android.debug.obsoleteApi=true
org.gradle.unsafe.configuration-cache=true
org.gradle.warning.mode=all
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Feb 17 08:49:16 JST 2023
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
1 change: 0 additions & 1 deletion libtermexec/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ android {
}

externalNativeBuild {
ndkVersion versions.NDK
ndkBuild {
path 'src/main/jni/Android.mk'
}
Expand Down
4 changes: 2 additions & 2 deletions term/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ android {

defaultConfig {
externalNativeBuild {
ndkVersion versions.NDK
ndkBuild {
arguments '-C', 'src/main', '-j', Runtime.runtime.availableProcessors() + ''
if (abiArm) abiFilters 'arm64-v8a', 'armeabi-v7a'
Expand Down Expand Up @@ -56,6 +55,7 @@ android {

buildFeatures {
viewBinding true
buildConfig true
}

buildTypes {
Expand Down Expand Up @@ -135,7 +135,7 @@ dependencies {

dependencies {
implementation 'org.apache.commons:commons-compress:1.21'
implementation 'commons-io:commons-io:2.6'
implementation 'commons-io:commons-io:2.13.0'
implementation 'org.tukaani:xz:1.8'
}

Expand Down

0 comments on commit 81a4a05

Please sign in to comment.