Advertisement
Guest User

s

a guest
Jan 6th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. Project Build :
  2. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  3.  
  4. buildscript {
  5. repositories {
  6. jcenter()
  7. }
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:1.0.0'
  10.  
  11. // NOTE: Do not place your application dependencies here; they belong
  12. // in the individual module build.gradle files
  13. }
  14. }
  15.  
  16. allprojects {
  17. repositories {
  18. jcenter()
  19. }
  20. }
  21.  
  22. Module : apply plugin: 'com.android.application'
  23.  
  24. android {
  25. compileSdkVersion 21
  26. buildToolsVersion "21.1.2"
  27.  
  28. defaultConfig {
  29. applicationId "com.example.shaharsbday"
  30. minSdkVersion 15
  31. targetSdkVersion 21
  32. versionCode 1
  33. versionName "1.0"
  34. }
  35. buildTypes {
  36. release {
  37. minifyEnabled false
  38. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  39. }
  40. }
  41. }
  42.  
  43. dependencies {
  44. compile fileTree(dir: 'libs', include: ['*.jar'])
  45. compile 'com.android.support:appcompat-v7:21.0.3'
  46. }
  47.  
  48. Propreties : ## This file is automatically generated by Android Studio.
  49. # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
  50. #
  51. # This file must *NOT* be checked into Version Control Systems,
  52. # as it contains information specific to your local configuration.
  53. #
  54. # Location of the SDK. This is only used by Gradle.
  55. # For customization when using a Version Control System, please read the
  56. # header note.
  57. #Tue Jan 06 20:36:36 IST 2015
  58. sdk.dir=C\:\\Users\\\u05D0\u05D3\u05D9\u05E8\\AppData\\Local\\Android\\sdk
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement