Skip to content

Commit 4a08d75

Browse files
committed
Merge pull request google#1 from google/master
update repo
2 parents 73dd4d3 + 0bdcb55 commit 4a08d75

File tree

228 files changed

+6720
-7562
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

228 files changed

+6720
-7562
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ language: android
1616

1717
android:
1818
components:
19-
- build-tools-20.0.0
20-
- andorid-19
19+
- build-tools-21.1.1
2120
- android-20
21+
- android-21
2222
- extra-google-m2repository
2323
- extra-android-m2repository
24-
- sys-img-armeabi-v7a-android-20
24+
- sys-img-armeabi-v7a-android-21
2525

2626
notifications:
2727
email: false
2828

2929
env:
3030
matrix:
31-
- ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
31+
- ANDROID_TARGET=android-21 ANDROID_ABI=armeabi-v7a
3232

3333
before_install:
3434
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,11 @@ This project is the Android app for the conference. The app supports devices
99
running Android 4.0+, and is optimized for phones and tablets of all shapes
1010
and sizes. It also contains an Android Wear integration.
1111

12-
<h2>Android L Developer Preview</h2>
12+
<h2>Android 5.0 and Material Design</h2>
1313

1414
![Screenshot](art/hero.png)
1515

16-
We have updated the I/O app with [material design](http://www.google.com/design/spec) and the [Android L Developer Preview](http://developer.android.com/preview/index.html)! For a quick preview of the new tactile surfaces, animated touch feedback, bold use of color, and refreshed iconography by checking out this [teaser video](https://www.youtube.com/watch?v=mCgteBXYxQc) or download the preview APK below.
17-
18-
<a href="../../raw/master/binaries/iosched-lpreview.apk"><b>Download the I/O app APK for Android L Preview</b></a>
19-
20-
To run this APK, you will need a device set up with the Android L Preview system image. For
21-
more information, please refer to the [Android L Developer Preview page](http://developer.android.com/preview/index.html).
16+
We have updated the I/O app with [material design](http://www.google.com/design/spec) and the Android 5.0 SDK! For a quick preview of the new tactile surfaces, animated touch feedback, bold use of color, and refreshed iconography, check out this [teaser video](https://www.youtube.com/watch?v=mCgteBXYxQc).
2217

2318
<h2>Source</h2>
2419

Wearable/build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,16 @@ android {
3636
}
3737
signingConfigs {
3838
debug {
39-
storeFile file("../android/debug.keystore")
40-
storePassword "android"
41-
keyAlias "androiddebugkey"
42-
keyPassword "android"
39+
storeFile file(iosched14_android_debugkey_storefile)
40+
storePassword iosched14_android_debugkey_storePassword
41+
keyAlias iosched14_android_debugkey_keyAlias
42+
keyPassword iosched14_android_debugkey_keyPassword
4343
}
4444
release {
45-
storeFile file("../android/debug.keystore")
46-
storePassword "android"
47-
keyAlias "androiddebugkey"
48-
keyPassword "android"
45+
storeFile file(iosched14_android_releasekey_storefile)
46+
storePassword iosched14_android_releasekey_storePassword
47+
keyAlias iosched14_android_releasekey_keyAlias
48+
keyPassword iosched14_android_releasekey_keyPassword
4949
}
5050
}
5151

@@ -65,8 +65,8 @@ android {
6565
}
6666

6767
dependencies {
68-
compile 'com.android.support:support-v13:+'
68+
compile 'com.android.support:support-v13:21.+'
6969
compile 'com.google.android.support:wearable:+'
70-
compile 'com.google.android.gms:play-services-wearable:+'
70+
compile 'com.google.android.gms:play-services-wearable:6.1.+'
7171
}
7272

android/build.gradle

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
* limitations under the License.
1515
*/
1616

17-
lpreview = hasProperty('lpreview')
18-
1917
apply plugin: 'com.android.application'
2018

2119
repositories {
@@ -26,15 +24,12 @@ repositories {
2624
}
2725

2826
android {
29-
compileSdkVersion lpreview ? "android-L" : 19
30-
buildToolsVersion "20.0.0"
31-
32-
productFlavors { lpreview ? lpreview{} : classic{} }
27+
compileSdkVersion 21
28+
buildToolsVersion "21.1.1"
3329

34-
defaultConfig lpreview ? {} : {
35-
// Non-L-preview configuration
30+
defaultConfig {
3631
minSdkVersion 14
37-
targetSdkVersion 19
32+
targetSdkVersion 21
3833
}
3934

4035
signingConfigs {
@@ -58,7 +53,7 @@ android {
5853
signingConfig signingConfigs.debug
5954
}
6055
release {
61-
runProguard true
56+
minifyEnabled true
6257
proguardFiles getDefaultProguardFile('proguard-android.txt'), file('proguard-project.txt')
6358
signingConfig signingConfigs.release
6459
}
@@ -75,10 +70,10 @@ android {
7570

7671
dependencies {
7772
wearApp project(':Wearable')
78-
compile 'com.google.android.gms:play-services:5+'
79-
compile 'com.android.support:support-v13:20.+'
80-
compile 'com.android.support:support-v4:20.+'
81-
compile 'com.google.android.apps.dashclock:dashclock-api:+'
73+
compile 'com.google.android.gms:play-services:6.1.+'
74+
compile 'com.android.support:support-v13:21.+'
75+
compile 'com.android.support:appcompat-v7:21.+'
76+
compile 'com.android.support:cardview-v7:21.+'
8277
compile 'com.google.code.gson:gson:2.+'
8378
compile('com.google.api-client:google-api-client:1.+') {
8479
exclude group: 'xpp3', module: 'shared'

android/src/classic/java/com/google/samples/apps/iosched/util/LPreviewUtils.java

Lines changed: 0 additions & 28 deletions
This file was deleted.

android/src/lpreview/java/com/google/samples/apps/iosched/util/LPreviewUtils.java

Lines changed: 0 additions & 33 deletions
This file was deleted.

0 commit comments

Comments
 (0)