43 lines
1.1 KiB
Groovy
43 lines
1.1 KiB
Groovy
|
plugins {
|
||
|
alias(libs.plugins.android.application)
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace 'com.bjlx.armcloudaf'
|
||
|
compileSdk 36
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "com.bjlx.armcloudaf"
|
||
|
minSdk 26
|
||
|
targetSdk 36
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
|
||
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_11
|
||
|
targetCompatibility JavaVersion.VERSION_11
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
|
||
|
implementation libs.appcompat
|
||
|
implementation libs.material
|
||
|
implementation libs.activity
|
||
|
implementation libs.constraintlayout
|
||
|
testImplementation libs.junit
|
||
|
androidTestImplementation libs.ext.junit
|
||
|
androidTestImplementation libs.espresso.core
|
||
|
implementation("net.armcloud.xscore:xscore:1.0.0")
|
||
|
implementation("org.lsposed.hiddenapibypass:hiddenapibypass:4.3")
|
||
|
implementation 'com.alibaba:fastjson:1.2.68'
|
||
|
}
|