Skip to content

Instantly share code, notes, and snippets.

@godjooyoung
Created June 19, 2020 01:06
Show Gist options
  • Save godjooyoung/51fe7eb5948b8c392b0599af044ffd75 to your computer and use it in GitHub Desktop.
Save godjooyoung/51fe7eb5948b8c392b0599af044ffd75 to your computer and use it in GitHub Desktop.
좌표값 가져오기 그리들
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "com.example.location"
minSdkVersion 16
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
//AUTO라이브러리
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.google.android.gms:play-services-location:17.0.0'
implementation 'com.github.pedroSG94:AutoPermissions:1.0.3'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment