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.
 
 
 
 
 
 

41 line
1.3 KiB

  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 26
  4. useLibrary 'org.apache.http.legacy'
  5. defaultConfig {
  6. applicationId "com.neusoft.nosspos.fumaoapp"
  7. minSdkVersion 22
  8. targetSdkVersion 26
  9. versionCode 1
  10. versionName "1.0"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. implementation project(':CordovaLib')
  21. implementation 'com.android.support:appcompat-v7:26.1.0'
  22. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  23. implementation 'com.android.support:design:26.1.0'
  24. implementation 'com.codezjx.library:andlinker:0.7.1'
  25. compile fileTree(include: ['*.jar'], dir: 'libs')
  26. //rxlifecycle
  27. compile 'com.trello:rxlifecycle-components:1.0'
  28. //rx
  29. compile 'io.reactivex:rxandroid:1.2.1'
  30. compile 'io.reactivex:rxjava:1.3.0'
  31. compile 'io.reactivex.rxjava2:rxjava:2.1.8'
  32. compile 'com.squareup.retrofit2:retrofit:2.4.0'
  33. compile 'com.squareup.retrofit2:adapter-rxjava:2.4.0'
  34. compile 'com.squareup.retrofit2:converter-gson:2.4.0'
  35. compile 'com.squareup.okhttp3:logging-interceptor:3.10.0'
  36. implementation project(':barcodescaner')
  37. implementation project(':extendMediaPlay')
  38. }