Skip to content

Commit

Permalink
Added gradle support.
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelPeinado committed Jul 14, 2013
1 parent 9249e02 commit 1b43170
Show file tree
Hide file tree
Showing 52 changed files with 70 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Expand Up @@ -24,5 +24,10 @@ target
release.properties
pom.xml.*

#Gradle
.gradle/
glassactionbar/build/
glassactionbar-sample/build

# Folder containing all the Google Play APKs
apks
3 changes: 3 additions & 0 deletions .gitmodules
@@ -0,0 +1,3 @@
[submodule "thirdParty/actionbarsherlock"]
path = thirdParty/actionbarsherlock
url = git://github.com/JakeWharton/ActionBarSherlock.git
16 changes: 16 additions & 0 deletions build.gradle
@@ -0,0 +1,16 @@
buildscript {

repositories {
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:0.5.+'
}
}

allprojects {
repositories {
mavenCentral()
}
}
File renamed without changes.
19 changes: 19 additions & 0 deletions glassactionbar-sample/build.gradle
@@ -0,0 +1,19 @@
apply plugin: 'android'

dependencies {
compile project(':glassactionbar')
compile project(':actionbarsherlock')
}

android {
compileSdkVersion 17
buildToolsVersion '17.0.0'

sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
}
}
}
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
21 changes: 21 additions & 0 deletions glassactionbar/build.gradle
@@ -0,0 +1,21 @@
apply plugin: 'android-library'

dependencies {
compile 'com.google.android:support-v4:r7'
compile project(':actionbarsherlock')
}

android {
compileSdkVersion 17
buildToolsVersion '17.0.0'

sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
}
}
}


File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions settings.gradle
@@ -0,0 +1,5 @@
include ':glassactionbar'
include ':glassactionbar-sample'

include 'actionbarsherlock'
project(':actionbarsherlock').projectDir = new File('thirdParty/actionbarsherlock/actionbarsherlock')
1 change: 1 addition & 0 deletions thirdParty/actionbarsherlock
Submodule actionbarsherlock added at ced6bf

0 comments on commit 1b43170

Please sign in to comment.