Created
May 17, 2013 16:41
-
-
Save Goddchen/5600345 to your computer and use it in GitHub Desktop.
Gradle build file for Eclipse projects in Android Studio (as created by the Eclipse File->Export feature)
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
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.4' | |
} | |
} | |
apply plugin: 'android' | |
dependencies { | |
} | |
android { | |
compileSdkVersion 16 | |
buildToolsVersion "16" | |
defaultConfig { | |
minSdkVersion 5 | |
targetSdkVersion 8 | |
} | |
sourceSets { | |
main { | |
manifest.srcFile 'AndroidManifest.xml' | |
java.srcDirs = ['src'] | |
resources.srcDirs = ['src'] | |
aidl.srcDirs = ['src'] | |
renderscript.srcDirs = ['src'] | |
res.srcDirs = ['res'] | |
assets.srcDirs = ['assets'] | |
} | |
instrumentTest.setRoot('tests') | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment