Guest User

Untitled

a guest
Apr 23rd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 25
  5. buildToolsVersion "24.0.3"
  6. defaultConfig {
  7. applicationId "com.supportop"
  8. minSdkVersion 17
  9. targetSdkVersion 25
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21.  
  22. dependencies {
  23. compile fileTree(include: ['*.jar'], dir: 'libs')
  24. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  25. exclude group: 'com.android.support', module: 'support-annotations'
  26. })
  27. compile 'com.android.support:appcompat-v7:25.3.1'
  28. compile 'com.android.support:recyclerview-v7:25.3.1'
  29. compile 'com.android.support:design:25.3.1'
  30. compile('io.github.sac:SocketclusterClientJava:1.7.4') {
  31. exclude group: 'org.json', module: 'json'
  32. }
  33. compile 'com.github.bassaer:chatmessageview:1.10.0'
  34. testCompile 'junit:junit:4.12'
  35. }
Add Comment
Please, Sign In to add comment