-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from tobykurien/v0.13_development
V0.13 development
- Loading branch information
Showing
246 changed files
with
2,479 additions
and
341 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,9 @@ local.properties | |
.gradle | ||
build | ||
gradle.properties | ||
|
||
# IDEA | ||
./out | ||
.DS_Store | ||
.idea | ||
*.iml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,64 @@ | ||
apply plugin: 'android-library' | ||
apply plugin: "org.xtend.xtend-android" | ||
buildscript {scriptHandler-> | ||
apply from: '../repositories.gradle', to: scriptHandler | ||
apply from: '../dependencies.gradle' | ||
dependencies { | ||
classpath(project.ext.build.android_gradle) | ||
classpath(project.ext.build.xtend_android_gradle) | ||
} | ||
} | ||
|
||
repositories { | ||
jcenter() | ||
} | ||
|
||
apply plugin: 'com.android.library' | ||
apply plugin: "org.xtext.android.xtend" | ||
apply from: '../dependencies.gradle' | ||
apply from: './maven-push.gradle' | ||
|
||
dependencies { | ||
compile 'com.android.support:support-v4:20.0.0' | ||
compile 'org.eclipse.xtend:org.eclipse.xtend.lib:2.7.3' | ||
xtendCompileOnly 'com.github.oehme.xtend:xtend-contrib:0.4.+' | ||
compile 'com.google.code.gson:gson:2.3.1' // required by @AndroidJsonizer | ||
compile(project.ext.lib.android.support_v4) | ||
compile(project.ext.lib.android.appcompat_v7) | ||
compile(project.ext.lib.xtend) | ||
} | ||
|
||
android { | ||
compileSdkVersion 19 | ||
buildToolsVersion "21.1.1" | ||
sourceSets { | ||
main { | ||
manifest { | ||
srcFile 'AndroidManifest.xml' | ||
} | ||
java { | ||
srcDir 'src' | ||
} | ||
res { | ||
srcDir 'res' | ||
} | ||
assets { | ||
srcDir 'assets' | ||
} | ||
resources { | ||
srcDir 'src' | ||
} | ||
aidl { | ||
srcDir 'src' | ||
} | ||
compileSdkVersion(project.ext.compileSdkVersion) | ||
buildToolsVersion(project.ext.buildToolsVersion) | ||
|
||
sourceSets { | ||
main { | ||
manifest{ srcFile 'AndroidManifest.xml' } | ||
java.srcDirs += ['src'] | ||
res.srcDirs += ['res'] | ||
assets.srcDirs += ['assets'] | ||
resources.srcDirs += ['src'] | ||
aidl.srcDirs += ['src'] | ||
} | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_7 | ||
targetCompatibility JavaVersion.VERSION_1_7 | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
} | ||
|
||
lintOptions { | ||
abortOnError false | ||
} | ||
|
||
packagingOptions { | ||
// from xtendlib >=2.9.2 | ||
exclude 'META-INF/ECLIPSE_.RSA' | ||
exclude 'META-INF/ECLIPSE_.SF' | ||
} | ||
} | ||
|
||
apply from: 'maven-push.gradle' | ||
|
Empty file.
Oops, something went wrong.