-
-
Save locskot/b02d9a81fa709ea0e43a879dee380e64 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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