Skip to content

Commit 8fbfb03

Browse files
Auto-update
1 parent cbd1ca0 commit 8fbfb03

32 files changed

Lines changed: 835 additions & 552 deletions
Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
2-
3-
41
buildscript {
52
repositories {
63
mavenCentral()
@@ -11,13 +8,14 @@ buildscript {
118
}
129
}
1310

14-
apply plugin: 'android'
11+
apply plugin: 'com.android.application'
1512

1613

1714
dependencies {
1815

19-
compile "com.android.support:support-v4:20.+"
20-
compile "com.android.support:support-v13:20.+"
16+
compile "com.android.support:support-v4:21.+"
17+
compile "com.android.support:support-v13:21.+"
18+
compile "com.android.support:cardview-v7:21.+"
2119

2220
}
2321

@@ -30,9 +28,13 @@ List<String> dirs = [
3028
'template'] // boilerplate code that is generated by the sample template process
3129

3230
android {
33-
compileSdkVersion "android-L"
31+
compileSdkVersion 21
32+
buildToolsVersion "21.0.0"
3433

35-
buildToolsVersion "20.0.0"
34+
defaultConfig {
35+
minSdkVersion 21
36+
targetSdkVersion 21
37+
}
3638

3739
sourceSets {
3840
main {

Camera2BasicSample/src/main/AndroidManifest.xml renamed to Application/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
android:versionCode="1"
2323
android:versionName="1.0">
2424

25-
<uses-sdk android:minSdkVersion="L" android:targetSdkVersion="L" />
25+
<!-- Min/target SDK versions (<uses-sdk>) managed by build.gradle -->
2626
<uses-permission android:name="android.permission.CAMERA" />
2727

2828
<application android:allowBackup="true"

Camera2BasicSample/src/main/java/com/example/android/camera2basic/AutoFitTextureView.java renamed to Application/src/main/java/com/example/android/camera2basic/AutoFitTextureView.java

File renamed without changes.

0 commit comments

Comments
 (0)