XploitSPY/client/app/build.gradle

32 lines
855 B
Groovy
Raw Normal View History

2020-01-11 23:35:37 +08:00
apply plugin: 'com.android.application'
android {
lintOptions {
checkReleaseBuilds false
}
2020-01-20 05:45:32 +08:00
compileSdkVersion 28
2020-01-11 23:35:37 +08:00
buildToolsVersion '28.0.3'
defaultConfig {
applicationId 'com.remote.app'
2020-03-22 22:04:11 +08:00
minSdkVersion 14
2020-04-09 16:16:03 +08:00
targetSdkVersion 21
2020-01-11 23:35:37 +08:00
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'
}
2020-03-22 22:04:11 +08:00
implementation 'com.android.support:support-compat:28.0.0'
2020-01-11 23:35:37 +08:00
}