博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android Studio App文件夹下这个Module的gradle配置文件
阅读量:4988 次
发布时间:2019-06-12

本文共 1132 字,大约阅读时间需要 3 分钟。

// 声明是Android程序apply plugin: 'com.android.application'android {    // 编译SDK的版本    compileSdkVersion 21    // build tools的版本    buildToolsVersion "21.1.1"    defaultConfig {        // 应用的包名        applicationId "me.storm.ninegag"        minSdkVersion 14        targetSdkVersion 21        versionCode 1        versionName "1.0.0"    }    // java版本    compileOptions {        sourceCompatibility JavaVersion.VERSION_1_7        targetCompatibility JavaVersion.VERSION_1_7    }    buildTypes {        release {            // 是否进行混淆            minifyEnabled false            // 混淆文件的位置            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'        }    }    // 移除lint检查的error    lintOptions {      abortOnError false    }}dependencies {    // 编译libs目录下的所有jar包    compile fileTree(dir: 'libs', include: ['*.jar'])    compile 'com.android.support:support-v4:21.0.2'    compile 'com.etsy.android.grid:library:1.0.5'    compile 'com.alexvasilkov:foldable-layout:1.0.1'    // 编译extras目录下的ShimmerAndroid模块    compile project(':extras:ShimmerAndroid')}

 

转载于:https://www.cnblogs.com/xiaoyao095/p/4814184.html

你可能感兴趣的文章
js常见正则表达式验证及方法(一)
查看>>
IOS开发 Missing submodule 'XXXX' 警告
查看>>
c语言海量数据处理
查看>>
create table like 和create table select 比较
查看>>
获取存储过程
查看>>
Good Bye 2015B
查看>>
Parallel Gradient Boosting Decision Trees
查看>>
4.Twisted中的Deferreds
查看>>
[C#学习笔记]你真的理解拆箱装箱吗?
查看>>
CSS背景使用,引入、尺寸、平铺、定位、多重背景
查看>>
DB2 因版本问题 Reorg 出错 解决办法
查看>>
安卓 notes
查看>>
Session对象详解[源于网络]
查看>>
经历无数次失败,终于把kamailio装上了
查看>>
Android ListActivity实现遍历文件列表,查看文档类文件
查看>>
C++自定义NULLPTR
查看>>
Windows2003 IIS6完美实现WordPress伪静态的方法
查看>>
压缩感知学习之初识压缩感知
查看>>
define 中强制类型转换 && 浮点数后面带f
查看>>
sql server中分布式查询(链接远程服务器(sp_addlinkedserver)和远程登录映射
查看>>