wangoublog
只需要添加gradle文件,在里面添加如下代码片段
-------------------------------------------
 main {
manifest.srcFile \'AndroidManifest.xml\'
java.srcDirs = [\'src\']
resources.srcDirs = [\'src\']
aidl.srcDirs = [\'src\']
renderscript.srcDirs = [\'src\']
res.srcDirs = [\'res\']
assets.srcDirs = [\'assets\']
jniLibs.srcDirs = [\'libs\']
}
----------------------------------------------
gradle完整文件内容如下


buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath \'com.android.tools.build:gradle:1.2.3\'
}
}

allprojects {
repositories {
jcenter()
}
}

apply plugin: \'android\'

dependencies {
compile fileTree(include: \'*.jar\', dir: \'libs\')
}

android {
compileSdkVersion 22
buildToolsVersion \'22.0.1\'
packagingOptions {
exclude \'META-INF/NOTICE\'
exclude \'META-INF/LICENSE\'
}
sourceSets {
main {
manifest.srcFile \'AndroidManifest.xml\'
java.srcDirs = [\'src\']
resources.srcDirs = [\'src\']
aidl.srcDirs = [\'src\']
renderscript.srcDirs = [\'src\']
res.srcDirs = [\'res\']
assets.srcDirs = [\'assets\']
jniLibs.srcDirs = [\'libs\']
}

// Move the tests to tests/java, tests/res, etc...
instrumentTest.setRoot(\'tests\')

// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot(\'build-types/debug\')
release.setRoot(\'build-types/release\')
}

lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
posted on 2015-10-08 16:00  BKYJungle  阅读(158)  评论(0编辑  收藏  举报

分类:

技术点:

相关文章:

  • 2021-09-10
  • 2021-12-17
  • 2021-12-14
  • 2022-01-05
  • 2021-09-10
  • 2021-11-04
  • 2021-09-09
猜你喜欢
  • 2021-11-01
  • 2022-01-07
  • 2021-08-29
  • 2021-05-04
  • 2022-01-02
  • 2021-09-13
  • 2022-01-06
相关资源
相似解决方案