Skip to content

Commit

Permalink
AS/Gradle support
Browse files Browse the repository at this point in the history
  • Loading branch information
commonsguy committed Sep 3, 2014
1 parent f8edcec commit 000a23a
Show file tree
Hide file tree
Showing 592 changed files with 1,664 additions and 1,963 deletions.
4 changes: 2 additions & 2 deletions Accessibility/FontScale/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -13,7 +13,7 @@ dependencies {
}

android {
compileSdkVersion 18
compileSdkVersion 19
buildToolsVersion "19.1.0"

sourceSets {
Expand Down
2 changes: 1 addition & 1 deletion Accessibility/FontScale/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

# Project target.
target=android-16
target=android-19
9 changes: 4 additions & 5 deletions ActionBar/ActionBarDemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ActionBar/ActionBarDemo/project.properties
Original file line number Diff line number Diff line change
@@ -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
9 changes: 4 additions & 5 deletions ActionBar/ActionBarDemoNative/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion ActionBar/ActionBarDemoNative/project.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sdk-folder=/opt/android-sdk-linux_x86-1.1_r1
target=android-15
target=android-19
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
5 changes: 2 additions & 3 deletions ActionBar/AppCompat/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
9 changes: 4 additions & 5 deletions ActionBar/ListNav/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ActionBar/ListNav/project.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
android.library.reference.1=../../external/ActionBarSherlock
target=android-15
target=android-19
5 changes: 2 additions & 3 deletions ActionBar/ListNavNative/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion ActionBar/ListNavNative/project.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
target=android-15
target=android-19
5 changes: 2 additions & 3 deletions ActionBar/Overlay/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion ActionBar/Overlay/project.properties
Original file line number Diff line number Diff line change
@@ -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
5 changes: 2 additions & 3 deletions ActionBar/SearchView/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion ActionBar/SearchView/project.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sdk-folder=/opt/android-sdk-linux_x86-1.1_r1
target=android-15
target=android-19
9 changes: 4 additions & 5 deletions ActionBar/Share/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ActionBar/Share/project.properties
Original file line number Diff line number Diff line change
@@ -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
5 changes: 2 additions & 3 deletions ActionBar/ShareNative/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion ActionBar/ShareNative/project.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sdk-folder=/opt/android-sdk-linux_x86-1.1_r1
target=android-15
target=android-19
9 changes: 4 additions & 5 deletions ActionBar/TabFragmentDemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ActionBar/TabFragmentDemo/project.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
android.library.reference.1=../../external/ActionBarSherlock
target=android-15
target=android-19
5 changes: 2 additions & 3 deletions ActionBar/TabFragmentDemoNative/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion ActionBar/TabFragmentDemoNative/project.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
target=android-15
target=android-19
5 changes: 2 additions & 3 deletions ActionMode/ActionModeMC/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion ActionMode/ActionModeMC/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
# project structure.

# Project target.
target=android-14
target=android-19
sdk-folder=/opt/android-sdk-linux_x86-1.1_r1
5 changes: 2 additions & 3 deletions ActionMode/LongPress/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion ActionMode/LongPress/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
# project structure.

# Project target.
target=android-14
target=android-19
sdk-folder=/opt/android-sdk-linux_x86-1.1_r1
Loading

0 comments on commit 000a23a

Please sign in to comment.