XploitSPY/client/app/build.gradle

32 lines
855 B
Groovy
Raw Normal View History

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