Skip to content

Instantly share code, notes, and snippets.

@locskot
Created November 12, 2019 12:43
Show Gist options
  • Save locskot/b02d9a81fa709ea0e43a879dee380e64 to your computer and use it in GitHub Desktop.
Save locskot/b02d9a81fa709ea0e43a879dee380e64 to your computer and use it in GitHub Desktop.
group 'com.mathrawk.libphonenumber'
version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
}
}
rootProject.allprojects {
repositories {
google()
jcenter()
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 16
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
disable 'InvalidPackage'
}
dependencies {
api 'com.googlecode.libphonenumber:libphonenumber:8.10.2'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment