Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. build.gradle
  2. ________________________________________________________________________________________________________________
  3.  
  4. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  5. buildscript {
  6. repositories {
  7. jcenter()
  8. }
  9. dependencies {
  10. classpath 'com.android.tools.build:gradle:1.0.0-rc1'
  11. }
  12. }
  13.  
  14. allprojects {
  15. repositories {
  16. jcenter()
  17. }
  18. }
  19.  
  20.  
  21.  
  22. build.gralde
  23. ________________________________________________________________________________________________________________
  24.  
  25.  
  26. apply plugin: 'com.android.application'
  27.  
  28. android {
  29. compileSdkVersion 20
  30. buildToolsVersion "20.0.0"
  31.  
  32. defaultConfig {
  33. applicationId "com.ionicframework.beautyst135213"
  34. minSdkVersion 10
  35. targetSdkVersion 19
  36. }
  37.  
  38. buildTypes {
  39. release {
  40. minifyEnabled false
  41. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  42. }
  43. }
  44. }
  45.  
  46. dependencies {
  47. compile project(':cordovaAppCordovaLib')
  48. }
  49.  
  50. ___________________________________________________________________________________________________________________
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement