diff --git a/Accessibility/FontScale/build.gradle b/Accessibility/FontScale/build.gradle index a30b60def..0add1e335 100644 --- a/Accessibility/FontScale/build.gradle +++ b/Accessibility/FontScale/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,7 +13,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/Accessibility/FontScale/project.properties b/Accessibility/FontScale/project.properties index 9b84a6b4b..4ab125693 100644 --- a/Accessibility/FontScale/project.properties +++ b/Accessibility/FontScale/project.properties @@ -11,4 +11,4 @@ #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt # Project target. -target=android-16 +target=android-19 diff --git a/ActionBar/ActionBarDemo/build.gradle b/ActionBar/ActionBarDemo/build.gradle index d9ddcbfa3..18c187f31 100644 --- a/ActionBar/ActionBarDemo/build.gradle +++ b/ActionBar/ActionBarDemo/build.gradle @@ -3,23 +3,22 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' repositories { mavenCentral() } dependencies { - compile fileTree(dir: 'libs', include: '*.jar') compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" defaultConfig { targetSdkVersion 17 diff --git a/ActionBar/ActionBarDemo/project.properties b/ActionBar/ActionBarDemo/project.properties index 90e085800..cf52a9f7d 100644 --- a/ActionBar/ActionBarDemo/project.properties +++ b/ActionBar/ActionBarDemo/project.properties @@ -1,3 +1,3 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-15 +target=android-19 android.library.reference.1=../../external/ActionBarSherlock diff --git a/ActionBar/ActionBarDemoNative/build.gradle b/ActionBar/ActionBarDemoNative/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/ActionBar/ActionBarDemoNative/build.gradle +++ b/ActionBar/ActionBarDemoNative/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/ActionBar/ActionBarDemoNative/project.properties b/ActionBar/ActionBarDemoNative/project.properties index 7bad1df4c..ba4a6c013 100644 --- a/ActionBar/ActionBarDemoNative/project.properties +++ b/ActionBar/ActionBarDemoNative/project.properties @@ -1,2 +1,2 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-15 +target=android-19 diff --git a/ActionBar/ActionBarDemoNative/src/com/commonsware/android/inflation/ActionBarDemoActivity.java b/ActionBar/ActionBarDemoNative/src/com/commonsware/android/inflation/ActionBarDemoActivity.java index f999f46a9..fc0dca1b1 100644 --- a/ActionBar/ActionBarDemoNative/src/com/commonsware/android/inflation/ActionBarDemoActivity.java +++ b/ActionBar/ActionBarDemoNative/src/com/commonsware/android/inflation/ActionBarDemoActivity.java @@ -25,7 +25,6 @@ import android.widget.TextView; import java.util.ArrayList; - public class ActionBarDemoActivity extends ListActivity implements TextView.OnEditorActionListener { private static final String[] items= { "lorem", "ipsum", "dolor", diff --git a/ActionBar/AppCompat/build.gradle b/ActionBar/AppCompat/build.gradle index eee7910dc..764dcc737 100644 --- a/ActionBar/AppCompat/build.gradle +++ b/ActionBar/AppCompat/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') compile 'com.android.support:appcompat-v7:19.1.0' } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/ActionBar/ListNav/build.gradle b/ActionBar/ListNav/build.gradle index c3d76adbf..8ef8fd2d1 100644 --- a/ActionBar/ListNav/build.gradle +++ b/ActionBar/ListNav/build.gradle @@ -3,24 +3,23 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' repositories { mavenCentral() } dependencies { - compile fileTree(dir: 'libs', include: '*.jar') compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' compile 'com.android.support:support-v4:19.1.0' } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" defaultConfig { targetSdkVersion 17 diff --git a/ActionBar/ListNav/project.properties b/ActionBar/ListNav/project.properties index 68aa5333b..7c5b6ac2d 100644 --- a/ActionBar/ListNav/project.properties +++ b/ActionBar/ListNav/project.properties @@ -1,2 +1,2 @@ android.library.reference.1=../../external/ActionBarSherlock -target=android-15 +target=android-19 diff --git a/ActionBar/ListNavNative/build.gradle b/ActionBar/ListNavNative/build.gradle index 477f6d989..ff39d1e45 100644 --- a/ActionBar/ListNavNative/build.gradle +++ b/ActionBar/ListNavNative/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/ActionBar/ListNavNative/project.properties b/ActionBar/ListNavNative/project.properties index 0f735cea9..0a458d4d7 100644 --- a/ActionBar/ListNavNative/project.properties +++ b/ActionBar/ListNavNative/project.properties @@ -1 +1 @@ -target=android-15 +target=android-19 diff --git a/ActionBar/Overlay/build.gradle b/ActionBar/Overlay/build.gradle index 8bb2d4b7a..8ef8fd2d1 100644 --- a/ActionBar/Overlay/build.gradle +++ b/ActionBar/Overlay/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,13 +13,12 @@ repositories { } dependencies { - compile fileTree(dir: 'libs', include: '*.jar') compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' compile 'com.android.support:support-v4:19.1.0' } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" defaultConfig { diff --git a/ActionBar/Overlay/project.properties b/ActionBar/Overlay/project.properties index 90e085800..cf52a9f7d 100644 --- a/ActionBar/Overlay/project.properties +++ b/ActionBar/Overlay/project.properties @@ -1,3 +1,3 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-15 +target=android-19 android.library.reference.1=../../external/ActionBarSherlock diff --git a/ActionBar/SearchView/build.gradle b/ActionBar/SearchView/build.gradle index 477f6d989..ff39d1e45 100644 --- a/ActionBar/SearchView/build.gradle +++ b/ActionBar/SearchView/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/ActionBar/SearchView/project.properties b/ActionBar/SearchView/project.properties index 7bad1df4c..ba4a6c013 100644 --- a/ActionBar/SearchView/project.properties +++ b/ActionBar/SearchView/project.properties @@ -1,2 +1,2 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-15 +target=android-19 diff --git a/ActionBar/Share/build.gradle b/ActionBar/Share/build.gradle index c3d76adbf..8ef8fd2d1 100644 --- a/ActionBar/Share/build.gradle +++ b/ActionBar/Share/build.gradle @@ -3,24 +3,23 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' repositories { mavenCentral() } dependencies { - compile fileTree(dir: 'libs', include: '*.jar') compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' compile 'com.android.support:support-v4:19.1.0' } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" defaultConfig { targetSdkVersion 17 diff --git a/ActionBar/Share/project.properties b/ActionBar/Share/project.properties index 90e085800..cf52a9f7d 100644 --- a/ActionBar/Share/project.properties +++ b/ActionBar/Share/project.properties @@ -1,3 +1,3 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-15 +target=android-19 android.library.reference.1=../../external/ActionBarSherlock diff --git a/ActionBar/ShareNative/build.gradle b/ActionBar/ShareNative/build.gradle index 477f6d989..ff39d1e45 100644 --- a/ActionBar/ShareNative/build.gradle +++ b/ActionBar/ShareNative/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/ActionBar/ShareNative/project.properties b/ActionBar/ShareNative/project.properties index 7bad1df4c..ba4a6c013 100644 --- a/ActionBar/ShareNative/project.properties +++ b/ActionBar/ShareNative/project.properties @@ -1,2 +1,2 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-15 +target=android-19 diff --git a/ActionBar/TabFragmentDemo/build.gradle b/ActionBar/TabFragmentDemo/build.gradle index c3d76adbf..8ef8fd2d1 100644 --- a/ActionBar/TabFragmentDemo/build.gradle +++ b/ActionBar/TabFragmentDemo/build.gradle @@ -3,24 +3,23 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' repositories { mavenCentral() } dependencies { - compile fileTree(dir: 'libs', include: '*.jar') compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' compile 'com.android.support:support-v4:19.1.0' } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" defaultConfig { targetSdkVersion 17 diff --git a/ActionBar/TabFragmentDemo/project.properties b/ActionBar/TabFragmentDemo/project.properties index 68aa5333b..7c5b6ac2d 100644 --- a/ActionBar/TabFragmentDemo/project.properties +++ b/ActionBar/TabFragmentDemo/project.properties @@ -1,2 +1,2 @@ android.library.reference.1=../../external/ActionBarSherlock -target=android-15 +target=android-19 diff --git a/ActionBar/TabFragmentDemoNative/build.gradle b/ActionBar/TabFragmentDemoNative/build.gradle index c5a28bd0c..ff39d1e45 100644 --- a/ActionBar/TabFragmentDemoNative/build.gradle +++ b/ActionBar/TabFragmentDemoNative/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/ActionBar/TabFragmentDemoNative/project.properties b/ActionBar/TabFragmentDemoNative/project.properties index 0f735cea9..0a458d4d7 100644 --- a/ActionBar/TabFragmentDemoNative/project.properties +++ b/ActionBar/TabFragmentDemoNative/project.properties @@ -1 +1 @@ -target=android-15 +target=android-19 diff --git a/ActionMode/ActionModeMC/build.gradle b/ActionMode/ActionModeMC/build.gradle index 477f6d989..ff39d1e45 100644 --- a/ActionMode/ActionModeMC/build.gradle +++ b/ActionMode/ActionModeMC/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/ActionMode/ActionModeMC/project.properties b/ActionMode/ActionModeMC/project.properties index 5f89edf7b..ef0f6ec75 100644 --- a/ActionMode/ActionModeMC/project.properties +++ b/ActionMode/ActionModeMC/project.properties @@ -8,5 +8,5 @@ # project structure. # Project target. -target=android-14 +target=android-19 sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 diff --git a/ActionMode/LongPress/build.gradle b/ActionMode/LongPress/build.gradle index 477f6d989..ff39d1e45 100644 --- a/ActionMode/LongPress/build.gradle +++ b/ActionMode/LongPress/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/ActionMode/LongPress/project.properties b/ActionMode/LongPress/project.properties index 5f89edf7b..ef0f6ec75 100644 --- a/ActionMode/LongPress/project.properties +++ b/ActionMode/LongPress/project.properties @@ -8,5 +8,5 @@ # project structure. # Project target. -target=android-14 +target=android-19 sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 diff --git a/ActionMode/Manual/build.gradle b/ActionMode/Manual/build.gradle index 946a92392..16b927e2a 100644 --- a/ActionMode/Manual/build.gradle +++ b/ActionMode/Manual/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,13 +13,12 @@ repositories { } dependencies { - compile fileTree(dir: 'libs', include: '*.jar') compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' compile 'com.android.support:support-v13:19.1.0' } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" defaultConfig { diff --git a/ActionMode/Manual/project.properties b/ActionMode/Manual/project.properties index d5f210f61..18753cdae 100644 --- a/ActionMode/Manual/project.properties +++ b/ActionMode/Manual/project.properties @@ -8,6 +8,6 @@ # project structure. # Project target. -target=android-15 +target=android-19 sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 android.library.reference.1=../../external/ActionBarSherlock diff --git a/ActionMode/ManualNative/build.gradle b/ActionMode/ManualNative/build.gradle index 477f6d989..ff39d1e45 100644 --- a/ActionMode/ManualNative/build.gradle +++ b/ActionMode/ManualNative/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/ActionMode/ManualNative/project.properties b/ActionMode/ManualNative/project.properties index 45bfe3d24..ef0f6ec75 100644 --- a/ActionMode/ManualNative/project.properties +++ b/ActionMode/ManualNative/project.properties @@ -8,5 +8,5 @@ # project structure. # Project target. -target=android-15 +target=android-19 sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 diff --git a/Activities/Explicit/build.gradle b/Activities/Explicit/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/Activities/Explicit/build.gradle +++ b/Activities/Explicit/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Activities/Explicit/project.properties b/Activities/Explicit/project.properties index 025839c6b..0a458d4d7 100644 --- a/Activities/Explicit/project.properties +++ b/Activities/Explicit/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/Activities/Extras/build.gradle b/Activities/Extras/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/Activities/Extras/build.gradle +++ b/Activities/Extras/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Activities/Extras/project.properties b/Activities/Extras/project.properties index 025839c6b..0a458d4d7 100644 --- a/Activities/Extras/project.properties +++ b/Activities/Extras/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/Activities/FullScreen/build.gradle b/Activities/FullScreen/build.gradle index 477f6d989..766c05e2b 100644 --- a/Activities/FullScreen/build.gradle +++ b/Activities/FullScreen/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,7 +13,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/Activities/FullScreen/project.properties b/Activities/FullScreen/project.properties index a3ee5ab64..4ab125693 100644 --- a/Activities/FullScreen/project.properties +++ b/Activities/FullScreen/project.properties @@ -11,4 +11,4 @@ #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt # Project target. -target=android-17 +target=android-19 diff --git a/Activities/Launch/build.gradle b/Activities/Launch/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/Activities/Launch/build.gradle +++ b/Activities/Launch/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Activities/Launch/project.properties b/Activities/Launch/project.properties index f65831e14..ba4a6c013 100644 --- a/Activities/Launch/project.properties +++ b/Activities/Launch/project.properties @@ -1,2 +1,2 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-8 +target=android-19 diff --git a/Activities/Lifecycle/build.gradle b/Activities/Lifecycle/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/Activities/Lifecycle/build.gradle +++ b/Activities/Lifecycle/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Activities/Lifecycle/project.properties b/Activities/Lifecycle/project.properties index 025839c6b..0a458d4d7 100644 --- a/Activities/Lifecycle/project.properties +++ b/Activities/Lifecycle/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/AdvServices/Binding/build.gradle b/AdvServices/Binding/build.gradle index 0fd1223ef..f46aaeec4 100644 --- a/AdvServices/Binding/build.gradle +++ b/AdvServices/Binding/build.gradle @@ -3,10 +3,10 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { compile fileTree(dir: 'libs', include: '*.jar') @@ -14,7 +14,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" defaultConfig { diff --git a/AdvServices/Binding/project.properties b/AdvServices/Binding/project.properties index e0d33d7c6..6c90d5101 100644 --- a/AdvServices/Binding/project.properties +++ b/AdvServices/Binding/project.properties @@ -8,5 +8,5 @@ # project structure. # Project target. -target=android-14 +target=android-19 android.library.reference.1=../../external/ActionBarSherlock diff --git a/AdvServices/BindingNative/build.gradle b/AdvServices/BindingNative/build.gradle index 477f6d989..766c05e2b 100644 --- a/AdvServices/BindingNative/build.gradle +++ b/AdvServices/BindingNative/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,7 +13,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/AdvServices/BindingNative/project.properties b/AdvServices/BindingNative/project.properties index 730e911f2..a5578ba09 100644 --- a/AdvServices/BindingNative/project.properties +++ b/AdvServices/BindingNative/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-14 +target=android-19 diff --git a/AdvServices/RemoteClient/build.gradle b/AdvServices/RemoteClient/build.gradle index 477f6d989..766c05e2b 100644 --- a/AdvServices/RemoteClient/build.gradle +++ b/AdvServices/RemoteClient/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,7 +13,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/AdvServices/RemoteClient/project.properties b/AdvServices/RemoteClient/project.properties index ea89160e0..a5578ba09 100644 --- a/AdvServices/RemoteClient/project.properties +++ b/AdvServices/RemoteClient/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-8 +target=android-19 diff --git a/AdvServices/RemoteClientEx/build.gradle b/AdvServices/RemoteClientEx/build.gradle index 477f6d989..766c05e2b 100644 --- a/AdvServices/RemoteClientEx/build.gradle +++ b/AdvServices/RemoteClientEx/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,7 +13,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/AdvServices/RemoteClientEx/project.properties b/AdvServices/RemoteClientEx/project.properties index ea89160e0..a5578ba09 100644 --- a/AdvServices/RemoteClientEx/project.properties +++ b/AdvServices/RemoteClientEx/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-8 +target=android-19 diff --git a/AdvServices/RemoteClientUnbound/build.gradle b/AdvServices/RemoteClientUnbound/build.gradle index 477f6d989..ff39d1e45 100644 --- a/AdvServices/RemoteClientUnbound/build.gradle +++ b/AdvServices/RemoteClientUnbound/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/AdvServices/RemoteClientUnbound/project.properties b/AdvServices/RemoteClientUnbound/project.properties index ea89160e0..a5578ba09 100644 --- a/AdvServices/RemoteClientUnbound/project.properties +++ b/AdvServices/RemoteClientUnbound/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-8 +target=android-19 diff --git a/AdvServices/RemoteService/build.gradle b/AdvServices/RemoteService/build.gradle index c5a28bd0c..8a006b66d 100644 --- a/AdvServices/RemoteService/build.gradle +++ b/AdvServices/RemoteService/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,7 +13,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/AdvServices/RemoteService/project.properties b/AdvServices/RemoteService/project.properties index 025839c6b..0a458d4d7 100644 --- a/AdvServices/RemoteService/project.properties +++ b/AdvServices/RemoteService/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/AdvServices/RemoteServiceEx/build.gradle b/AdvServices/RemoteServiceEx/build.gradle index c5a28bd0c..8a006b66d 100644 --- a/AdvServices/RemoteServiceEx/build.gradle +++ b/AdvServices/RemoteServiceEx/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,7 +13,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/AdvServices/RemoteServiceEx/project.properties b/AdvServices/RemoteServiceEx/project.properties index 025839c6b..0a458d4d7 100644 --- a/AdvServices/RemoteServiceEx/project.properties +++ b/AdvServices/RemoteServiceEx/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/AdvServices/RemoteServiceUnbound/build.gradle b/AdvServices/RemoteServiceUnbound/build.gradle index c5a28bd0c..8a006b66d 100644 --- a/AdvServices/RemoteServiceUnbound/build.gradle +++ b/AdvServices/RemoteServiceUnbound/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,7 +13,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/AdvServices/RemoteServiceUnbound/project.properties b/AdvServices/RemoteServiceUnbound/project.properties index 025839c6b..0a458d4d7 100644 --- a/AdvServices/RemoteServiceUnbound/project.properties +++ b/AdvServices/RemoteServiceUnbound/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/AlarmManager/Scheduled/build.gradle b/AlarmManager/Scheduled/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/AlarmManager/Scheduled/build.gradle +++ b/AlarmManager/Scheduled/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/AlarmManager/Scheduled/project.properties b/AlarmManager/Scheduled/project.properties index 025839c6b..0a458d4d7 100644 --- a/AlarmManager/Scheduled/project.properties +++ b/AlarmManager/Scheduled/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/AlarmManager/Simple/build.gradle b/AlarmManager/Simple/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/AlarmManager/Simple/build.gradle +++ b/AlarmManager/Simple/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/AlarmManager/Simple/project.properties b/AlarmManager/Simple/project.properties index 025839c6b..0a458d4d7 100644 --- a/AlarmManager/Simple/project.properties +++ b/AlarmManager/Simple/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/AlarmManager/WakeCast/build.gradle b/AlarmManager/WakeCast/build.gradle index 49dbf93c1..37dcab4aa 100644 --- a/AlarmManager/WakeCast/build.gradle +++ b/AlarmManager/WakeCast/build.gradle @@ -3,18 +3,18 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') + compile 'com.android.support:support-v4:19.1.0' } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/AlarmManager/WakeCast/project.properties b/AlarmManager/WakeCast/project.properties index 025839c6b..0a458d4d7 100644 --- a/AlarmManager/WakeCast/project.properties +++ b/AlarmManager/WakeCast/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/AlarmManager/Wakeful/build.gradle b/AlarmManager/Wakeful/build.gradle index 49dbf93c1..f5a198b8e 100644 --- a/AlarmManager/Wakeful/build.gradle +++ b/AlarmManager/Wakeful/build.gradle @@ -3,18 +3,24 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' + } +} +apply plugin: 'com.android.application' + +repositories { + maven { + url "https://repo.commonsware.com.s3.amazonaws.com" } } -apply plugin: 'android' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') + compile 'com.commonsware.cwac:wakeful:1.0.+' } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/AlarmManager/Wakeful/project.properties b/AlarmManager/Wakeful/project.properties index 025839c6b..0a458d4d7 100644 --- a/AlarmManager/Wakeful/project.properties +++ b/AlarmManager/Wakeful/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/Animation/AnimatorFade/build.gradle b/Animation/AnimatorFade/build.gradle index 477f6d989..766c05e2b 100644 --- a/Animation/AnimatorFade/build.gradle +++ b/Animation/AnimatorFade/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,7 +13,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/Animation/AnimatorFade/project.properties b/Animation/AnimatorFade/project.properties index 0f507e530..4ab125693 100644 --- a/Animation/AnimatorFade/project.properties +++ b/Animation/AnimatorFade/project.properties @@ -11,4 +11,4 @@ #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt # Project target. -target=android-12 +target=android-19 diff --git a/Animation/AnimatorFadeBC/build.gradle b/Animation/AnimatorFadeBC/build.gradle index 0bf7e806d..129edbb6d 100644 --- a/Animation/AnimatorFadeBC/build.gradle +++ b/Animation/AnimatorFadeBC/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -18,7 +18,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/Animation/AnimatorFadeBC/project.properties b/Animation/AnimatorFadeBC/project.properties index a738b7da5..e7d72dd03 100644 --- a/Animation/AnimatorFadeBC/project.properties +++ b/Animation/AnimatorFadeBC/project.properties @@ -11,5 +11,5 @@ #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt # Project target. -target=android-11 +target=android-19 android.library.reference.1=../../external/NineOldAndroids diff --git a/Animation/FragmentTransition/build.gradle b/Animation/FragmentTransition/build.gradle index 477f6d989..766c05e2b 100644 --- a/Animation/FragmentTransition/build.gradle +++ b/Animation/FragmentTransition/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,7 +13,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/Animation/FragmentTransition/project.properties b/Animation/FragmentTransition/project.properties index c052cd8f8..4ab125693 100644 --- a/Animation/FragmentTransition/project.properties +++ b/Animation/FragmentTransition/project.properties @@ -11,4 +11,4 @@ #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt # Project target. -target=android-13 +target=android-19 diff --git a/Animation/ObjectAnimator/build.gradle b/Animation/ObjectAnimator/build.gradle index 0bf7e806d..129edbb6d 100644 --- a/Animation/ObjectAnimator/build.gradle +++ b/Animation/ObjectAnimator/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -18,7 +18,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/Animation/ObjectAnimator/project.properties b/Animation/ObjectAnimator/project.properties index 48f61a584..d01a9d1b4 100644 --- a/Animation/ObjectAnimator/project.properties +++ b/Animation/ObjectAnimator/project.properties @@ -1,2 +1,2 @@ android.library.reference.1=../../external/NineOldAndroids -target=android-8 +target=android-19 diff --git a/Animation/SlidingPanel/build.gradle b/Animation/SlidingPanel/build.gradle index 477f6d989..ff39d1e45 100644 --- a/Animation/SlidingPanel/build.gradle +++ b/Animation/SlidingPanel/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/Animation/SlidingPanel/project.properties b/Animation/SlidingPanel/project.properties index f049142c1..a5578ba09 100644 --- a/Animation/SlidingPanel/project.properties +++ b/Animation/SlidingPanel/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-10 +target=android-19 diff --git a/Animation/SlidingPanelEx/build.gradle b/Animation/SlidingPanelEx/build.gradle index 477f6d989..ff39d1e45 100644 --- a/Animation/SlidingPanelEx/build.gradle +++ b/Animation/SlidingPanelEx/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/Animation/SlidingPanelEx/project.properties b/Animation/SlidingPanelEx/project.properties index ea89160e0..a5578ba09 100644 --- a/Animation/SlidingPanelEx/project.properties +++ b/Animation/SlidingPanelEx/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-8 +target=android-19 diff --git a/Animation/ThreePane/build.gradle b/Animation/ThreePane/build.gradle index 477f6d989..766c05e2b 100644 --- a/Animation/ThreePane/build.gradle +++ b/Animation/ThreePane/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,7 +13,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/Animation/ThreePane/project.properties b/Animation/ThreePane/project.properties index 0840b4a05..4ab125693 100644 --- a/Animation/ThreePane/project.properties +++ b/Animation/ThreePane/project.properties @@ -11,4 +11,4 @@ #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt # Project target. -target=android-15 +target=android-19 diff --git a/Animation/ThreePaneBC/build.gradle b/Animation/ThreePaneBC/build.gradle index 806d2e15a..d9066d471 100644 --- a/Animation/ThreePaneBC/build.gradle +++ b/Animation/ThreePaneBC/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -19,7 +19,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/Animation/ThreePaneBC/project.properties b/Animation/ThreePaneBC/project.properties index f348642c8..e7d72dd03 100644 --- a/Animation/ThreePaneBC/project.properties +++ b/Animation/ThreePaneBC/project.properties @@ -11,5 +11,5 @@ #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt # Project target. -target=android-13 +target=android-19 android.library.reference.1=../../external/NineOldAndroids diff --git a/AppWidget/LoremWidget/build.gradle b/AppWidget/LoremWidget/build.gradle index 477f6d989..ff39d1e45 100644 --- a/AppWidget/LoremWidget/build.gradle +++ b/AppWidget/LoremWidget/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/AppWidget/LoremWidget/project.properties b/AppWidget/LoremWidget/project.properties index 8da376af8..a5578ba09 100644 --- a/AppWidget/LoremWidget/project.properties +++ b/AppWidget/LoremWidget/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-15 +target=android-19 diff --git a/AppWidget/PairOfDice/build.gradle b/AppWidget/PairOfDice/build.gradle index 477f6d989..ff39d1e45 100644 --- a/AppWidget/PairOfDice/build.gradle +++ b/AppWidget/PairOfDice/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/AppWidget/PairOfDice/project.properties b/AppWidget/PairOfDice/project.properties index ea89160e0..a5578ba09 100644 --- a/AppWidget/PairOfDice/project.properties +++ b/AppWidget/PairOfDice/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-8 +target=android-19 diff --git a/AppWidget/Resize/build.gradle b/AppWidget/Resize/build.gradle index 477f6d989..ff39d1e45 100644 --- a/AppWidget/Resize/build.gradle +++ b/AppWidget/Resize/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/AppWidget/Resize/project.properties b/AppWidget/Resize/project.properties index 895c9ce2e..a5578ba09 100644 --- a/AppWidget/Resize/project.properties +++ b/AppWidget/Resize/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-16 +target=android-19 diff --git a/AppWidget/TwoOrThreeDice/build.gradle b/AppWidget/TwoOrThreeDice/build.gradle index 477f6d989..ff39d1e45 100644 --- a/AppWidget/TwoOrThreeDice/build.gradle +++ b/AppWidget/TwoOrThreeDice/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/AppWidget/TwoOrThreeDice/project.properties b/AppWidget/TwoOrThreeDice/project.properties index c4f09d2b2..a5578ba09 100644 --- a/AppWidget/TwoOrThreeDice/project.properties +++ b/AppWidget/TwoOrThreeDice/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-17 +target=android-19 diff --git a/BC/CompoundButton/build.gradle b/BC/CompoundButton/build.gradle index 477f6d989..766c05e2b 100644 --- a/BC/CompoundButton/build.gradle +++ b/BC/CompoundButton/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,7 +13,7 @@ dependencies { } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/BC/CompoundButton/project.properties b/BC/CompoundButton/project.properties index a3ee5ab64..4ab125693 100644 --- a/BC/CompoundButton/project.properties +++ b/BC/CompoundButton/project.properties @@ -11,4 +11,4 @@ #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt # Project target. -target=android-17 +target=android-19 diff --git a/Bandwidth/TrafficMonitor/build.gradle b/Bandwidth/TrafficMonitor/build.gradle index 477f6d989..ff39d1e45 100644 --- a/Bandwidth/TrafficMonitor/build.gradle +++ b/Bandwidth/TrafficMonitor/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/Bandwidth/TrafficMonitor/project.properties b/Bandwidth/TrafficMonitor/project.properties index ea89160e0..a5578ba09 100644 --- a/Bandwidth/TrafficMonitor/project.properties +++ b/Bandwidth/TrafficMonitor/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-8 +target=android-19 diff --git a/Basic/Button/.classpath b/Basic/Button/.classpath index 72fda77e7..7bc01d9a9 100644 --- a/Basic/Button/.classpath +++ b/Basic/Button/.classpath @@ -3,6 +3,7 @@ - + + diff --git a/Basic/Button/AndroidManifest.xml b/Basic/Button/AndroidManifest.xml index e272fad0c..ce9378c72 100644 --- a/Basic/Button/AndroidManifest.xml +++ b/Basic/Button/AndroidManifest.xml @@ -4,7 +4,9 @@ android:versionCode="1" android:versionName="1.0"> - + - + + diff --git a/Basic/CheckBox/AndroidManifest.xml b/Basic/CheckBox/AndroidManifest.xml index 38718327e..44761974b 100644 --- a/Basic/CheckBox/AndroidManifest.xml +++ b/Basic/CheckBox/AndroidManifest.xml @@ -1,12 +1,23 @@ - + - + - + - + @@ -15,4 +26,4 @@ - + \ No newline at end of file diff --git a/Basic/CheckBox/build.gradle b/Basic/CheckBox/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/Basic/CheckBox/build.gradle +++ b/Basic/CheckBox/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Basic/CheckBox/project.properties b/Basic/CheckBox/project.properties index f65831e14..ba4a6c013 100644 --- a/Basic/CheckBox/project.properties +++ b/Basic/CheckBox/project.properties @@ -1,2 +1,2 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-8 +target=android-19 diff --git a/Basic/Field/AndroidManifest.xml b/Basic/Field/AndroidManifest.xml index 99ebde5ec..79a8acd4a 100644 --- a/Basic/Field/AndroidManifest.xml +++ b/Basic/Field/AndroidManifest.xml @@ -1,11 +1,23 @@ - + - - + + + - + @@ -14,4 +26,4 @@ - + \ No newline at end of file diff --git a/Basic/Field/build.gradle b/Basic/Field/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/Basic/Field/build.gradle +++ b/Basic/Field/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Basic/Field/project.properties b/Basic/Field/project.properties index f65831e14..ba4a6c013 100644 --- a/Basic/Field/project.properties +++ b/Basic/Field/project.properties @@ -1,2 +1,2 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-8 +target=android-19 diff --git a/Basic/ImageView/.classpath b/Basic/ImageView/.classpath index 72fda77e7..7bc01d9a9 100644 --- a/Basic/ImageView/.classpath +++ b/Basic/ImageView/.classpath @@ -3,6 +3,7 @@ - + + diff --git a/Basic/ImageView/AndroidManifest.xml b/Basic/ImageView/AndroidManifest.xml index 2bb6e564c..abd832ac1 100644 --- a/Basic/ImageView/AndroidManifest.xml +++ b/Basic/ImageView/AndroidManifest.xml @@ -1,12 +1,23 @@ - + - + - + - + @@ -15,4 +26,4 @@ - + \ No newline at end of file diff --git a/Basic/ImageView/build.gradle b/Basic/ImageView/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/Basic/ImageView/build.gradle +++ b/Basic/ImageView/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Basic/ImageView/project.properties b/Basic/ImageView/project.properties index f65831e14..ba4a6c013 100644 --- a/Basic/ImageView/project.properties +++ b/Basic/ImageView/project.properties @@ -1,2 +1,2 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-8 +target=android-19 diff --git a/Basic/ImageView/res/layout/main.xml b/Basic/ImageView/res/layout/main.xml index 0db222cc6..76946eb64 100644 --- a/Basic/ImageView/res/layout/main.xml +++ b/Basic/ImageView/res/layout/main.xml @@ -5,3 +5,4 @@ android:layout_height="match_parent" android:adjustViewBounds="true" android:src="@drawable/molecule"/> + diff --git a/Basic/Label/.classpath b/Basic/Label/.classpath index 72fda77e7..7bc01d9a9 100644 --- a/Basic/Label/.classpath +++ b/Basic/Label/.classpath @@ -3,6 +3,7 @@ - + + diff --git a/Basic/Label/AndroidManifest.xml b/Basic/Label/AndroidManifest.xml index 7cca4f111..2c5208937 100644 --- a/Basic/Label/AndroidManifest.xml +++ b/Basic/Label/AndroidManifest.xml @@ -1,12 +1,23 @@ - + - + - + - + @@ -15,4 +26,4 @@ - + \ No newline at end of file diff --git a/Basic/Label/build.gradle b/Basic/Label/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/Basic/Label/build.gradle +++ b/Basic/Label/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Basic/Label/project.properties b/Basic/Label/project.properties index f65831e14..ba4a6c013 100644 --- a/Basic/Label/project.properties +++ b/Basic/Label/project.properties @@ -1,2 +1,2 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-8 +target=android-19 diff --git a/Basic/RadioButton/AndroidManifest.xml b/Basic/RadioButton/AndroidManifest.xml index 5722e4314..67cd9a1a9 100644 --- a/Basic/RadioButton/AndroidManifest.xml +++ b/Basic/RadioButton/AndroidManifest.xml @@ -12,7 +12,7 @@ + android:targetSdkVersion="14"/> - + + diff --git a/Basic/ToggleButton/AndroidManifest.xml b/Basic/ToggleButton/AndroidManifest.xml index 151a00afb..56173bb3a 100644 --- a/Basic/ToggleButton/AndroidManifest.xml +++ b/Basic/ToggleButton/AndroidManifest.xml @@ -1,12 +1,25 @@ - + - + - + - - + + @@ -15,4 +28,4 @@ - + \ No newline at end of file diff --git a/Basic/ToggleButton/build.gradle b/Basic/ToggleButton/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/Basic/ToggleButton/build.gradle +++ b/Basic/ToggleButton/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Basic/ToggleButton/project.properties b/Basic/ToggleButton/project.properties index f65831e14..ba4a6c013 100644 --- a/Basic/ToggleButton/project.properties +++ b/Basic/ToggleButton/project.properties @@ -1,2 +1,2 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-8 +target=android-19 diff --git a/Bitmaps/InSampleSize/build.gradle b/Bitmaps/InSampleSize/build.gradle index 0eda3278b..766c05e2b 100644 --- a/Bitmaps/InSampleSize/build.gradle +++ b/Bitmaps/InSampleSize/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' diff --git a/CPU-Java/AIDLOverhead/Client/build.gradle b/CPU-Java/AIDLOverhead/Client/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/CPU-Java/AIDLOverhead/Client/build.gradle +++ b/CPU-Java/AIDLOverhead/Client/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/CPU-Java/AIDLOverhead/Client/project.properties b/CPU-Java/AIDLOverhead/Client/project.properties index 025839c6b..0a458d4d7 100644 --- a/CPU-Java/AIDLOverhead/Client/project.properties +++ b/CPU-Java/AIDLOverhead/Client/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/CPU-Java/AIDLOverhead/RemoteService/build.gradle b/CPU-Java/AIDLOverhead/RemoteService/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/CPU-Java/AIDLOverhead/RemoteService/build.gradle +++ b/CPU-Java/AIDLOverhead/RemoteService/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/CPU-Java/AIDLOverhead/RemoteService/project.properties b/CPU-Java/AIDLOverhead/RemoteService/project.properties index 025839c6b..0a458d4d7 100644 --- a/CPU-Java/AIDLOverhead/RemoteService/project.properties +++ b/CPU-Java/AIDLOverhead/RemoteService/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/CPU-Java/GoAsync/.classpath b/CPU-Java/GoAsync/.classpath index 6aed2ebfb..7bc01d9a9 100644 --- a/CPU-Java/GoAsync/.classpath +++ b/CPU-Java/GoAsync/.classpath @@ -4,5 +4,6 @@ + diff --git a/CPU-Java/GoAsync/build.gradle b/CPU-Java/GoAsync/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/CPU-Java/GoAsync/build.gradle +++ b/CPU-Java/GoAsync/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/CPU-Java/GoAsync/project.properties b/CPU-Java/GoAsync/project.properties index d79abae19..a5578ba09 100644 --- a/CPU-Java/GoAsync/project.properties +++ b/CPU-Java/GoAsync/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-11 +target=android-19 diff --git a/CPU-Java/PrefsPersist/build.gradle b/CPU-Java/PrefsPersist/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/CPU-Java/PrefsPersist/build.gradle +++ b/CPU-Java/PrefsPersist/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/CPU-Java/PrefsPersist/project.properties b/CPU-Java/PrefsPersist/project.properties index d79abae19..a5578ba09 100644 --- a/CPU-Java/PrefsPersist/project.properties +++ b/CPU-Java/PrefsPersist/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-11 +target=android-19 diff --git a/Calendar/Query/build.gradle b/Calendar/Query/build.gradle index 477f6d989..ff39d1e45 100644 --- a/Calendar/Query/build.gradle +++ b/Calendar/Query/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/Calendar/Query/project.properties b/Calendar/Query/project.properties index 730e911f2..a5578ba09 100644 --- a/Calendar/Query/project.properties +++ b/Calendar/Query/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-14 +target=android-19 diff --git a/Camera/Content/build.gradle b/Camera/Content/build.gradle index 477f6d989..ff39d1e45 100644 --- a/Camera/Content/build.gradle +++ b/Camera/Content/build.gradle @@ -3,17 +3,16 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" sourceSets { diff --git a/Camera/Content/project.properties b/Camera/Content/project.properties index 85aac5401..4ab125693 100644 --- a/Camera/Content/project.properties +++ b/Camera/Content/project.properties @@ -11,4 +11,4 @@ #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt # Project target. -target=android-8 +target=android-19 diff --git a/Camera/Picture/build.gradle b/Camera/Picture/build.gradle index b4231cc63..8ef8fd2d1 100644 --- a/Camera/Picture/build.gradle +++ b/Camera/Picture/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } apply plugin: 'com.android.application' @@ -13,13 +13,12 @@ repositories { } dependencies { - // compile fileTree(dir: 'libs', include: '*.jar') compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' compile 'com.android.support:support-v4:19.1.0' } android { - compileSdkVersion 18 + compileSdkVersion 19 buildToolsVersion "19.1.0" defaultConfig { diff --git a/Camera/Picture/project.properties b/Camera/Picture/project.properties index 0f735cea9..0a458d4d7 100644 --- a/Camera/Picture/project.properties +++ b/Camera/Picture/project.properties @@ -1 +1 @@ -target=android-15 +target=android-19 diff --git a/Camera/Preview/build.gradle b/Camera/Preview/build.gradle index c3d76adbf..8ef8fd2d1 100644 --- a/Camera/Preview/build.gradle +++ b/Camera/Preview/build.gradle @@ -3,24 +3,23 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' repositories { mavenCentral() } dependencies { - compile fileTree(dir: 'libs', include: '*.jar') compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' compile 'com.android.support:support-v4:19.1.0' } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" defaultConfig { targetSdkVersion 17 diff --git a/Camera/Preview/project.properties b/Camera/Preview/project.properties index 0f735cea9..0a458d4d7 100644 --- a/Camera/Preview/project.properties +++ b/Camera/Preview/project.properties @@ -1 +1 @@ -target=android-15 +target=android-19 diff --git a/Camera/ZXing-II/build.gradle b/Camera/ZXing-II/build.gradle index 49dbf93c1..766c05e2b 100644 --- a/Camera/ZXing-II/build.gradle +++ b/Camera/ZXing-II/build.gradle @@ -3,18 +3,18 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') + // compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Camera/ZXing-II/project.properties b/Camera/ZXing-II/project.properties index 484dab075..91d2b0246 100644 --- a/Camera/ZXing-II/project.properties +++ b/Camera/ZXing-II/project.properties @@ -11,5 +11,5 @@ #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt # Project target. -target=android-17 +target=android-19 android.library=true diff --git a/Camera/ZXing/build.gradle b/Camera/ZXing/build.gradle index 49dbf93c1..8a006b66d 100644 --- a/Camera/ZXing/build.gradle +++ b/Camera/ZXing/build.gradle @@ -3,18 +3,18 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Camera/ZXing/project.properties b/Camera/ZXing/project.properties index 025839c6b..0a458d4d7 100644 --- a/Camera/ZXing/project.properties +++ b/Camera/ZXing/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/ConfigChange/DIY/build.gradle b/ConfigChange/DIY/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/ConfigChange/DIY/build.gradle +++ b/ConfigChange/DIY/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/ConfigChange/DIY/project.properties b/ConfigChange/DIY/project.properties index a7ef993af..ba4a6c013 100644 --- a/ConfigChange/DIY/project.properties +++ b/ConfigChange/DIY/project.properties @@ -1,2 +1,2 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-14 +target=android-19 diff --git a/ConfigChange/Fragments/build.gradle b/ConfigChange/Fragments/build.gradle index c3d76adbf..8ef8fd2d1 100644 --- a/ConfigChange/Fragments/build.gradle +++ b/ConfigChange/Fragments/build.gradle @@ -3,24 +3,23 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' repositories { mavenCentral() } dependencies { - compile fileTree(dir: 'libs', include: '*.jar') compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' compile 'com.android.support:support-v4:19.1.0' } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" defaultConfig { targetSdkVersion 17 diff --git a/ConfigChange/Fragments/project.properties b/ConfigChange/Fragments/project.properties index 0f735cea9..0a458d4d7 100644 --- a/ConfigChange/Fragments/project.properties +++ b/ConfigChange/Fragments/project.properties @@ -1 +1 @@ -target=android-15 +target=android-19 diff --git a/ConfigChange/Retain/build.gradle b/ConfigChange/Retain/build.gradle index c3d76adbf..8c91123e6 100644 --- a/ConfigChange/Retain/build.gradle +++ b/ConfigChange/Retain/build.gradle @@ -3,24 +3,18 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' -repositories { - mavenCentral() -} +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') - compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' - compile 'com.android.support:support-v4:19.1.0' } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" defaultConfig { targetSdkVersion 17 diff --git a/ConfigChange/Retain/project.properties b/ConfigChange/Retain/project.properties index f65831e14..ba4a6c013 100644 --- a/ConfigChange/Retain/project.properties +++ b/ConfigChange/Retain/project.properties @@ -1,2 +1,2 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-8 +target=android-19 diff --git a/Contacts/Inserter/build.gradle b/Contacts/Inserter/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/Contacts/Inserter/build.gradle +++ b/Contacts/Inserter/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Contacts/Inserter/project.properties b/Contacts/Inserter/project.properties index ea89160e0..a5578ba09 100644 --- a/Contacts/Inserter/project.properties +++ b/Contacts/Inserter/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-8 +target=android-19 diff --git a/Contacts/Pick/build.gradle b/Contacts/Pick/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/Contacts/Pick/build.gradle +++ b/Contacts/Pick/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Contacts/Pick/project.properties b/Contacts/Pick/project.properties index ea89160e0..a5578ba09 100644 --- a/Contacts/Pick/project.properties +++ b/Contacts/Pick/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-8 +target=android-19 diff --git a/Contacts/Spinners/build.gradle b/Contacts/Spinners/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/Contacts/Spinners/build.gradle +++ b/Contacts/Spinners/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Contacts/Spinners/project.properties b/Contacts/Spinners/project.properties index 025839c6b..0a458d4d7 100644 --- a/Contacts/Spinners/project.properties +++ b/Contacts/Spinners/project.properties @@ -1 +1 @@ -target=android-8 +target=android-19 diff --git a/Containers/LinearPercent/AndroidManifest.xml b/Containers/LinearPercent/AndroidManifest.xml index 8ffba39f0..85be45dd6 100644 --- a/Containers/LinearPercent/AndroidManifest.xml +++ b/Containers/LinearPercent/AndroidManifest.xml @@ -11,8 +11,8 @@ android:smallScreens="true"/> + android:minSdkVersion="14" + android:targetSdkVersion="14"/> + android:targetSdkVersion="14"/> + android:targetSdkVersion="14"/> - + + diff --git a/Containers/Scroll/AndroidManifest.xml b/Containers/Scroll/AndroidManifest.xml index 3d1a44ba3..f8ea823de 100644 --- a/Containers/Scroll/AndroidManifest.xml +++ b/Containers/Scroll/AndroidManifest.xml @@ -1,12 +1,23 @@ - + - + - + - + @@ -15,4 +26,4 @@ - + \ No newline at end of file diff --git a/Containers/Scroll/build.gradle b/Containers/Scroll/build.gradle index 49dbf93c1..ff39d1e45 100644 --- a/Containers/Scroll/build.gradle +++ b/Containers/Scroll/build.gradle @@ -3,18 +3,17 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.10.+' + classpath 'com.android.tools.build:gradle:0.12.2' } } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: '*.jar') } android { - compileSdkVersion 18 - buildToolsVersion "19.0.1" + compileSdkVersion 19 + buildToolsVersion "19.1.0" sourceSets { main { diff --git a/Containers/Scroll/project.properties b/Containers/Scroll/project.properties index f65831e14..ba4a6c013 100644 --- a/Containers/Scroll/project.properties +++ b/Containers/Scroll/project.properties @@ -1,2 +1,2 @@ sdk-folder=/opt/android-sdk-linux_x86-1.1_r1 -target=android-8 +target=android-19 diff --git a/Containers/Table/AndroidManifest.xml b/Containers/Table/AndroidManifest.xml index 1e22c0a5e..7107e2724 100644 --- a/Containers/Table/AndroidManifest.xml +++ b/Containers/Table/AndroidManifest.xml @@ -12,7 +12,7 @@ + android:targetSdkVersion="14"/> - + + + +