29 lines
638 B
Groovy
29 lines
638 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 35
|
|
namespace = "com.termux.view"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 24
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api project(":terminal-emulator")
|
|
implementation "androidx.annotation:annotation:1.3.0"
|
|
testImplementation "junit:junit:4.13.2"
|
|
}
|