Advertisement
solodroid

Untitled

Apr 30th, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.73 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 25
  5.     buildToolsVersion '25.0.2'
  6.  
  7.     defaultConfig {
  8.         applicationId 'com.solodroid.yourvidoeschannel'
  9.  
  10.         // TODO: Please update the Google Project number and OneSignal Id below to yours.
  11.         manifestPlaceholders = [manifestApplicationId          : "${applicationId}",
  12.                                 onesignal_app_id               : "c06540c4-dbe8-424f-92f6-1b9c90dbxxxx",
  13.                                 onesignal_google_project_number: "812477837432"]
  14.  
  15.         minSdkVersion 14
  16.         targetSdkVersion 25
  17.         versionCode 4
  18.         versionName '2.1.0'
  19.     }
  20.     buildTypes {
  21.         release {
  22.             minifyEnabled false
  23.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  24.         }
  25.     }
  26.     productFlavors {
  27.     }
  28.     useLibrary 'org.apache.http.legacy'
  29. }
  30.  
  31. dependencies {
  32.     compile fileTree(include: ['*.jar'], dir: 'libs')
  33.     testCompile 'junit:junit:4.12'
  34.     compile 'com.android.support:appcompat-v7:25.3.1'
  35.     compile 'com.android.support:design:25.3.1'
  36.     compile 'com.android.support:cardview-v7:25.3.1'
  37.     compile 'com.android.support:palette-v7:25.3.1'
  38.     compile 'com.google.android.gms:play-services-ads:10.2.1'
  39.     compile 'com.google.android.gms:play-services-gcm:10.2.1'
  40.     compile 'com.google.android.gms:play-services-analytics:10.2.1'
  41.     compile 'com.google.android.gms:play-services-location:10.2.1'
  42.     compile 'com.android.support:recyclerview-v7:25.3.1'
  43.     compile 'com.onesignal:OneSignal:2.+@aar'
  44.     compile fileTree(include: ['YouTubeAndroidPlayerApi.jar'], dir: 'libs')
  45.     compile fileTree(include: ['picasso-2.5.2.jar'], dir: 'libs')
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement