android_terminal/chrome-tabs/build.gradle
Martin Valba 414c6722ee New terminal based on NeoTerm
* From: https://github.com/NeoTerrm/NeoTerm
* Base commit: 236072395ce056d2d2cccf950d3f243f099a178f
* LICENSE: GPL-3.0

* This will also need changes in nethunter app itself too!
2022-12-27 20:31:07 +02:00

27 lines
655 B
Groovy
Executable File

apply plugin: 'com.android.library'
android {
compileSdkVersion rootProject.ext.android.COMPILE_SDK_VERSION
defaultConfig {
minSdkVersion rootProject.ext.android.MIN_SDK_VERSION
targetSdkVersion rootProject.ext.android.TARGET_SDK_VERSION
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
}
}
}
dependencies {
api 'com.github.michael-rapp:android-util:1.15.0'
implementation rootProject.ext.deps["annotations"]
testImplementation rootProject.ext.deps["junit"]
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.appcompat:appcompat-resources:1.2.0'
}