Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: samples/github/android/GithubSample/app/build.gradle

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 apply plugin: 'com.android.application' 1 apply plugin: 'com.android.application'
2 2
3 android { 3 android {
4 compileSdkVersion 22 4 compileSdkVersion 22
5 buildToolsVersion "23.0.0" 5 buildToolsVersion "23.0.0"
6 6
7 defaultConfig { 7 defaultConfig {
8 applicationId "com.google.fletch.githubsample" 8 applicationId "com.google.dartino.githubsample"
9 minSdkVersion 21 9 minSdkVersion 21
10 targetSdkVersion 22 10 targetSdkVersion 22
11 versionCode 1 11 versionCode 1
12 versionName "1.0" 12 versionName "1.0"
13 } 13 }
14 14
15 buildTypes { 15 buildTypes {
16 release { 16 release {
17 minifyEnabled false 17 minifyEnabled false
18 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'progu ard-rules.pro' 18 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'progu ard-rules.pro'
19 } 19 }
20 } 20 }
21 21
22 sourceSets { 22 sourceSets {
23 main { 23 main {
24 java.srcDir '../../../generated/immi/java' 24 java.srcDir '../../../generated/immi/java'
25 java.srcDir '../../../../../pkg/immi_samples/lib/android/src/main' 25 java.srcDir '../../../../../pkg/immi_samples/lib/android/src/main'
26 } 26 }
27 } 27 }
28 } 28 }
29 29
30 dependencies { 30 dependencies {
31 compile fileTree(dir: 'libs', include: ['*.jar']) 31 compile fileTree(dir: 'libs', include: ['*.jar'])
32 compile 'com.android.support:appcompat-v7:21.0.2' 32 compile 'com.android.support:appcompat-v7:21.0.2'
33 compile 'com.android.support:cardview-v7:21.0.+' 33 compile 'com.android.support:cardview-v7:21.0.+'
34 compile 'com.android.support:recyclerview-v7:21.0.+' 34 compile 'com.android.support:recyclerview-v7:21.0.+'
35 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698