You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. buildscript {
  2. repositories {
  3. maven { url 'https://maven.fabric.io/public' }
  4. }
  5. dependencies {
  6. classpath 'io.fabric.tools:gradle:1.+'
  7. }
  8. }
  9. apply plugin: 'com.android.application'
  10. apply plugin: 'io.fabric'
  11. repositories {
  12. maven { url 'https://maven.fabric.io/public' }
  13. }
  14. android {
  15. compileSdkVersion 25
  16. buildToolsVersion '25.0.3'
  17. defaultConfig {
  18. applicationId "com.rthoni.camotion"
  19. minSdkVersion 14
  20. targetSdkVersion 25
  21. versionCode 4
  22. versionName "0.0.8"
  23. }
  24. buildTypes {
  25. release {
  26. minifyEnabled false
  27. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  28. }
  29. }
  30. }
  31. dependencies {
  32. compile fileTree(dir: 'libs', include: ['*.jar'])
  33. testCompile 'junit:junit:4.12'
  34. compile 'com.android.support:appcompat-v7:25.0.1'
  35. compile 'com.android.support:design:25.0.1'
  36. compile project(':luticateauth')
  37. compile project(':luticateutils')
  38. compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {
  39. transitive = true;
  40. }
  41. }