mirror of
https://github.com/XploitWizer-Community/XploitSPY.git
synced 2024-11-05 18:09:22 +08:00
32 lines
855 B
Groovy
32 lines
855 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
}
|
|
compileSdkVersion 28
|
|
buildToolsVersion '28.0.3'
|
|
defaultConfig {
|
|
applicationId 'com.remote.app'
|
|
minSdkVersion 14
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation ('io.socket:socket.io-client:0.8.3') {
|
|
// excluding org.json which is provided by Android
|
|
exclude group: 'org.json', module: 'json'
|
|
}
|
|
implementation 'com.android.support:support-compat:28.0.0'
|
|
}
|