Files
org.exbin.bined.editor.android/app/build.gradle
T
2024-11-13 18:05:27 +01:00

55 lines
2.0 KiB
Groovy

plugins {
id 'com.android.application'
}
android {
compileSdk 34
defaultConfig {
applicationId "org.exbin.bined.editor.android"
minSdk 24
targetSdk 34
versionCode 9
versionName "0.2.3"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
vectorDrawables.generatedDensities = []
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
sourceSets {
main.java.srcDirs += 'libsrc'
}
namespace 'org.exbin.bined.editor.android'
}
tasks.withType(JavaCompile).configureEach {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
// implementation 'androidx.appcompat:appcompat:1.7.0'
// implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'com.google.android.flexbox:flexbox:3.0.0'
compileOnly group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.preference:preference:1.2.1'
implementation project(':file_picker')
// implementation 'org.exbin.bined:bined-core:0.3.0-SNAPSHOT'
// implementation 'org.exbin.bined:bined-operation:0.3.0-SNAPSHOT'
implementation 'org.exbin.auxiliary:binary_data:0.2.1'
implementation 'org.exbin.auxiliary:binary_data-paged:0.2.1'
// implementation 'org.exbin.auxiliary:binary_data-delta:0.2.1'
testCompileOnly group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
testImplementation 'junit:junit:4.13.2'
testImplementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'androidx.test:core:1.6.1'
// testImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
}