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

Side by Side Diff: demos/build.gradle

Issue 2978593002: Add validateOrigin() to the support library. (Closed)
Patch Set: Comment. Created 3 years, 5 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 23 4 compileSdkVersion 23
5 buildToolsVersion "23.0.2" 5 buildToolsVersion '25.0.0'
6 6
7 defaultConfig { 7 defaultConfig {
8 applicationId "org.chromium.customtabsdemos" 8 applicationId "org.chromium.customtabsdemos"
9 minSdkVersion 15 9 minSdkVersion 15
10 targetSdkVersion 23 10 targetSdkVersion 23
11 versionCode 1 11 versionCode 1
12 versionName "1.0" 12 versionName "1.0"
13 } 13 }
14 buildTypes { 14 buildTypes {
15 release { 15 release {
16 minifyEnabled false 16 minifyEnabled false
17 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'progu ard-rules.pro' 17 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'progu ard-rules.pro'
18 } 18 }
19 } 19 }
20 } 20 }
21 21
22 dependencies { 22 dependencies {
23 compile fileTree(dir: 'libs', include: ['*.jar']) 23 compile fileTree(dir: 'libs', include: ['*.jar'])
24 compile 'com.android.support:appcompat-v7:23.2.0' 24 compile 'com.android.support:appcompat-v7:23.2.0'
25 compile 'com.android.support:recyclerview-v7:23.2.0' 25 compile 'com.android.support:recyclerview-v7:23.2.0'
26 compile 'com.android.support:customtabs:23.2.0' 26 compile 'com.android.support:customtabs:23.2.0'
27 compile project(':shared') 27 compile project(':shared')
28 } 28 }
OLDNEW
« no previous file with comments | « customtabs/tests/src/android/support/customtabs/TestCustomTabsService.java ('k') | gradle/wrapper/gradle-wrapper.properties » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698