amlloc's blog

Just a Space


  • Home

  • Categories

  • Tags

  • Archives

  • About

给AndroidStudio项目添加依赖

Posted on 2018-09-16 | In codenote

依赖脚本

给Android Studio项目添加依赖

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
android {
...
repositories{
flatDir{
dirs 'libs'
}
}
...
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation (name:'aar-name', ext:'aar')
implementation (name:'aar-name', ext:'aar')
}
# Android # 填坑记录
cmake命令总结
在AndroidStudio项目中使用build.gradle进行签名
  • Table of Contents
  • Overview
amlloc

amlloc

35 posts
2 categories
22 tags
  1. 1. 给Android Studio项目添加依赖
© 2021 amlloc
Powered by Hexo
Theme - NexT.Mist