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.

67 lines
2.2 KiB

  1. /*
  2. * Copyright 2016 Marvin Ramin.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * <http://www.apache.org/licenses/LICENSE-2.0>
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. ext.versions = [
  17. // Version
  18. code : 1,
  19. name : '2.2.1',
  20. // Android Versions
  21. compileSdk : 29,
  22. targetSdk : 29,
  23. minSdk : 18,
  24. buildTools : '29.0.1',
  25. // Gradle Versions
  26. androidGradlePlugin : '3.0.1',
  27. mavenGradlePlugin : '1.4.1',
  28. bintrayGradlePlugin : '1.7.1',
  29. // Dependency Versions
  30. androidx : '1.1.0',
  31. rxJava : '2.1.7',
  32. biometric : '1.0.1',
  33. // Testing dependencies
  34. jUnit : '4.12',
  35. mockito : '1.10.19',
  36. powermock : '1.6.4',
  37. testRunner : '0.5'
  38. ]
  39. ext.gradlePlugins = [
  40. android : "com.android.tools.build:gradle:$versions.androidGradlePlugin",
  41. maven : "com.github.dcendents:android-maven-gradle-plugin:$versions.mavenGradlePlugin",
  42. bintray : "com.jfrog.bintray.gradle:gradle-bintray-plugin:$versions.bintrayGradlePlugin"
  43. ]
  44. ext.libraries = [
  45. // RxFingerprint dependencies
  46. // supportAnnotations: "com.android.support:support-annotations:$versions.supportLibrary",
  47. rxJava : "io.reactivex.rxjava2:rxjava:$versions.rxJava",
  48. biometric : "androidx.biometric:biometric:$versions.biometric",
  49. // Sample dependencies
  50. androidx : "androidx.appcompat:appcompat:$versions.androidx",
  51. // Test dependencies
  52. jUnit : "junit:junit:$versions.jUnit",
  53. mockito : "org.mockito:mockito-core:$versions.mockito",
  54. powermockJUnit : "org.powermock:powermock-api-mockito:$versions.powermock",
  55. powermockMockito : "org.powermock:powermock-module-junit4:$versions.powermock",
  56. ]