android 常用許可權和依賴
阿新 • • 發佈:2019-02-07
常用許可權
<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"/> 各種依賴 1. okhttp依賴 compile 'com.squareup.okhttp3:okhttp:3.6.0' compile 'com.squareup.okio:okio:1.11.0' 2. imageloader 依賴 compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5' 3. TabLayout—design包匯入 compile 'com.android.support:design:26+' 4. gson包匯入 compile 'com.google.code.gson:gson:2.2.4' 5. pull-to-refresh上下拉重新整理控制元件 compile 'com.github.userswlwork:pull-to-refresh:1.0.0' 6. banner 無限輪播 compile 'com.youth.banner:banner:1.4.10' 7.
recyclerview的依賴
compile 'com.android.support:recyclerview-v7:25.3.1'
8.
XRecyclerview的依賴
compile 'com.jcodecraeer:xrecyclerview:1.3.2'
9.log日誌的依賴
compile 'com.orhanobut:logger:2.1.1'
10.Fresco的依賴
compile
'com.facebook.fresco:fresco:0.11.0'
11.動圖的依賴
compile 'com.facebook.fresco:animated-gif:0.12.0'
12.
eventbus依賴
compile 'org.greenrobot:eventbus:3.0.0'
13.ButterKnife的依賴compile 'com.jakewharton:butterknife:7.0.1'
14.retrofit依賴
compile
'com.squareup.retrofit2:converter-gson:2.1.0'
15.Xbanner的依賴
compile 'com.xhb:xbanner:1.2.2' compile 'com.nineoldandroids:library:2.4.0'16.retrofit依賴 compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'
compile 'io.reactivex:rxandroid:1.2.1'
compile 'io.reactivex:rxjava:1.1.6' 18.封裝 /*5.0新控制元件的依賴*/ compile 'com.android.support:design:26.0.0-alpha1' /*RxJava與RxAndroid的依賴*/ compile 'io.reactivex.rxjava2:rxandroid:2.0.1' compile 'io.reactivex.rxjava2:rxjava:2.1.0' /*Retrofit與RxAndroid配置依賴*/ compile 'com.squareup.retrofit2:retrofit:2.3.0' compile 'com.squareup.retrofit2:adapter-rxjava2:2.3.0' /*使Retrofit的轉化器自定義完成資料的轉化 * 就是我們可以介面中少寫一些bean類 * */ compile 'com.squareup.retrofit2:converter-scalars:+' /*gson解析*/ compile 'com.google.code.gson:gson:2.8.1' /*Log工具:http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/1115/3685.html*/ compile 'com.github.zhaokaiqiang.klog:library:1.6.0'
19.二維碼:
compile 'cn.yipianfengye.android:zxing-library:2.1'
20.okgo的依賴
compile 'com.lzy.net:okgo:2.1.4'