Created
October 9, 2018 18:52
-
-
Save salihyalcin/2e827c413e61454012219d2701a106b6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
dependencies { | |
ext { | |
// Uygulamada kullanılan kütüphane versiyonları | |
testCompileVersion = '2.2.2' | |
supportLibraryVersion = '27.0.0' | |
constraintLayoutVersion = '1.1.3' | |
esriAndroidSDKVersion = '100.1.0' | |
calligraphyVersion = '2.2.0' | |
butterKnifeVersion = '8.8.1' | |
permissionDispatcherVersion = '3.3.1' | |
bottomBarVersion = '2.3.1' | |
retrofitVersion = '2.2.0' | |
gsonVersion = '2.8.0' | |
bottomSheetVersion = '1.3.1' | |
googleLocationVersion = '15.0.1' | |
googleMapVersion = '15.0.1' | |
googleAnalyticsVersion = '16.0.1' | |
easyImageVersion = '2.0.4' | |
slidingUpPanelVersion = '3.4.0' | |
circleIndicatorVersion = '1.2.2@aar' | |
oneSignalVersion = '[3.6.5, 3.99.99]' | |
multidexVersion = '1.0.3' | |
} | |
implementation fileTree(dir: 'libs', include: ['*.jar']) | |
implementation "com.android.support:appcompat-v7:$supportLibraryVersion" | |
implementation "com.android.support:design:$supportLibraryVersion" | |
implementation "com.android.support:cardview-v7:$supportLibraryVersion" | |
implementation "com.android.support:support-v13:$supportLibraryVersion" | |
implementation "com.android.support.constraint:constraint-layout:$constraintLayoutVersion" | |
implementation "com.android.support:multidex:$multidexVersion" | |
implementation "com.esri.arcgisruntime:arcgis-android:$esriAndroidSDKVersion" | |
implementation "uk.co.chrisjenx:calligraphy:$calligraphyVersion" | |
implementation "com.jakewharton:butterknife:$butterKnifeVersion" | |
implementation "com.roughike:bottom-bar:$bottomBarVersion" | |
implementation "com.github.hotchemi:permissionsdispatcher:$permissionDispatcherVersion" | |
implementation "com.github.jkwiecien:EasyImage:$easyImageVersion" | |
implementation "com.squareup.retrofit2:retrofit:$retrofitVersion" | |
implementation "com.squareup.retrofit2:converter-gson:$retrofitVersion" | |
implementation "com.google.code.gson:gson:$gsonVersion" | |
implementation 'com.google.android.gms:play-services-analytics:16.0.4' | |
implementation 'com.google.android.gms:play-services-location:16.0.0' | |
implementation 'com.google.android.gms:play-services-maps:16.0.0' | |
implementation "com.cocosw:bottomsheet:$bottomSheetVersion" | |
implementation "com.sothree.slidinguppanel:library:$slidingUpPanelVersion" | |
implementation "me.relex:circleindicator:$circleIndicatorVersion" | |
implementation "com.onesignal:OneSignal:$oneSignalVersion" | |
annotationProcessor "com.github.hotchemi:permissionsdispatcher-processor:$permissionDispatcherVersion" | |
annotationProcessor "com.jakewharton:butterknife-compiler:$butterKnifeVersion" | |
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" | |
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2', { | |
exclude group: 'com.android.support', module: 'support-annotations' | |
} | |
} |
This file contains hidden or 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
Could not find com.google.android.gms:play-services-location:16.0.4. | |
Searched in the following locations:``` | |
https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.pom | |
https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.jar | |
https://jcenter.bintray.com/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.pom | |
https://jcenter.bintray.com/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.jar | |
https://maven.google.com/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.pom | |
https://maven.google.com/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.jar | |
https://jitpack.io/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.pom | |
https://jitpack.io/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.jar | |
https://esri.bintray.com/arcgis/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.pom | |
https://esri.bintray.com/arcgis/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.jar | |
https://repo.maven.apache.org/maven2/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.pom | |
https://repo.maven.apache.org/maven2/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.jar | |
https://maven.google.com/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.pom | |
https://maven.google.com/com/google/android/gms/play-services-location/16.0.4/play-services-location-16.0.4.jar | |
Required by: | |
project :app |
This file contains hidden or 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
buildscript { | |
ext.kotlin_version = '1.2.61' | |
repositories { | |
google() | |
jcenter() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:3.2.0' | |
classpath 'com.google.gms:google-services:4.1.0' | |
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | |
// NOTE: Do not place your application dependencies here; they belong | |
// in the individual module build.gradle files | |
} | |
} | |
allprojects { | |
repositories { | |
google() | |
jcenter() | |
maven { url "https://maven.google.com" } | |
maven { url "https://jitpack.io" } | |
maven { url 'https://esri.bintray.com/arcgis'} | |
mavenCentral() | |
} | |
} | |
task clean(type: Delete) { | |
delete rootProject.buildDir | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment