【android studio生成junitLibs】敢说敢作敢为, 无怨无恨无悔。这篇文章主要讲述android studio生成junitLibs相关的知识,希望能为你提供帮助。
apply plugin: ‘com.android.application‘
android {
compileSdkVersion 24
buildToolsVersion "25.0.0"
sourceSets {
main {
jniLibs.srcDirs = [‘libs‘]
}
}
defaultConfig {
applicationId "com.lt.bottomtabdemo"
minSdkVersion 9
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile(‘proguard-android.txt‘), ‘proguard-rules.txt‘
}
}
}
repositories {
flatDir {
dirs ‘libs‘
}
}
dependencies {
compile fileTree(include: ‘*.jar‘, dir: ‘libs‘)
compile ‘com.android.support:support-v4:25.0.1‘
testCompile ‘junit:junit:4.12‘
}
默认android studio的defaultConfig节点在android节点内部,将defaultConfig节点提出来放外面,然后在android节点里面增加sourceSets节点。然后在dependencies里面增加编译代码testCompile ‘junit:junit:4.12‘
推荐阅读
- maven创建webapp项目
- Android中List循环遍历性能对照
- android studio2.3.3模拟器 Jni函数调用C++对象,lldb调试this指针和相关变量显示无效的原因
- CSAPP Bomb Lab记录
- android.content.res.Resources$NotFoundException: String resource ID #0x11
- 最美应用-从Android研发project师的角度之[最美时光]
- Vin码识别/车架号识别为APP功能增添亮点
- Spring mvc之源码 handlerMapping和handlerAdapter分析
- android——kotlin开发入门之开发环境搭建