Guest User

Untitled

a guest
Feb 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. NotificationCompat.Builder builder = new NotificationCompat.Builder(ctx, CHANNEL_ID).
  2.  
  3. apply plugin: 'com.android.application'
  4.  
  5. android {
  6. compileSdkVersion 26
  7. buildToolsVersion "26.0.2"
  8.  
  9. defaultConfig {
  10. applicationId "com.example.murarilal.atry"
  11. minSdkVersion 14
  12. targetSdkVersion 26
  13. versionCode 1
  14. versionName "1.0"
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. dataBinding{
  23. enabled true
  24. }
  25. }
  26.  
  27. dependencies {
  28. compile fileTree(dir: 'libs', include: ['*.jar'])
  29. testCompile 'junit:junit:4.12'
  30. configurations.all {
  31. resolutionStrategy.eachDependency { DependencyResolveDetails details ->
  32. def requested = details.requested
  33. if (requested.group == 'com.android.support') {
  34. if (!requested.name.startsWith("multidex")) {
  35. details.useVersion '25.3.1'
  36. }
  37. }
  38. }
  39. }
  40. //compile 'com.android.support:appcompat-v7:26.0.0-alpha1'
  41. compile 'com.android.support:design:26.0.0-alpha1'
  42. compile 'com.android.support:appcompat-v7:26.0.2'
  43. compile 'com.android.support:support-v4:26.1.0'
  44. compile 'com.android.support:support-v4:26.0.0-alpha1'
  45. compile 'com.android.support:recyclerview-v7:26.0.0-alpha1'
  46. compile 'com.android.support:cardview-v7:26.0.0-alpha1'
  47. compile 'de.hdodenhof:circleimageview:2.2.0'
  48. compile 'com.miguelcatalan:materialsearchview:1.4.0'
  49. }
Add Comment
Please, Sign In to add comment