您的位置:首页 > 移动开发 > Android开发

android 常用权限和依赖

2017-11-01 10:29 344 查看


点击打开链接(android 常用权限和依赖标准板)


常用权限

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

常用依赖

网络连接:

compile 'com.squareup.okhttp3:okhttp:3.4.1'
    compile 'com.squareup.okio:okio:1.5.0'


butterknife 

compile ‘com.jakewharton:butterknife:8.8.1’ 

annotationProcessor ‘com.jakewharton:butterknife-compiler:8.8.1’

imageloader 

compile ‘com.nostra13.universalimageloader:universal-image-loader:1.9.5’ 
TabLayout—design包导入 

compile ‘com.android.support:design:26+’

gson包导入 

compile ‘com.google.code.gson:gson:2.2.4’

compile 'com.google.code.gson:gson:2.6.2'

pull-to-refresh上下拉刷新控件 

compile ‘com.github.userswlwork:pull-to-refresh:1.0.0
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android 依赖