Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. compileSdkVersion 25
  2. buildToolsVersion "25.0.0"
  3.  
  4. defaultConfig {
  5. renderscriptTargetApi 21
  6. applicationId "com.myapp"
  7. minSdkVersion 16
  8. renderscriptSupportModeEnabled true
  9. targetSdkVersion 25
  10. versionCode 64
  11. versionName "2.0.8"
  12. multiDexEnabled true
  13. }
  14.  
  15. def SUPPORT_LIBRARY_VERSION = '25.0.0'
  16. compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION"
  17. compile("com.android.support:support-v4:$SUPPORT_LIBRARY_VERSION") {
  18. force = true;
  19. }
  20. compile "com.android.support:design:$SUPPORT_LIBRARY_VERSION"
  21. compile "com.android.support:palette-v7:$SUPPORT_LIBRARY_VERSION"
  22. compile "com.android.support:recyclerview-v7:$SUPPORT_LIBRARY_VERSION"
  23. compile "com.android.support:cardview-v7:$SUPPORT_LIBRARY_VERSION"
  24. androidTestCompile "com.android.support:support-annotations:$SUPPORT_LIBRARY_VERSION"
  25.  
  26. Error:(109, 54) No resource found that matches the given name (at 'android:actionModeCloseDrawable' with value '@drawable/abc_ic_ab_back_mtrl_am_alpha').
  27. Error:(109, 54) No resource found that matches the given name (at 'android:actionModeCloseDrawable' with value '@drawable/abc_ic_ab_back_mtrl_am_alpha').
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement