42 lines
711 B
Groovy
42 lines
711 B
Groovy
group 'com.example.whatsapp_share'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.3.0'
|
|
}
|
|
}
|
|
|
|
rootProject.allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
namespace 'com.example.whatsapp_share'
|
|
compileSdkVersion 33
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
lintOptions {
|
|
disable 'InvalidPackage'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api 'commons-io:commons-io:2.6'
|
|
implementation 'androidx.core:core:1.3.2'
|
|
}
|
|
|