android 优秀框架整理,一些Android架构框架AS安装整理

66b52468c121889b900d4956032f1009.png

8种机械键盘轴体对比

本人程序员,要买一个写代码的键盘,请问红轴和茶轴怎么选?

一.RxJava

安装

在app目录下的build.gradle中添加compile 'io.reactivex:rxandroid:1.2.1'

// Because RxAndroid releases are few and far between, it is recommended you also

// explicitly depend on RxJava's latest version for bug fixes and new features.

compile 'io.reactivex:rxjava:1.1.6'

RxAndroid GitHub主页:

ReactiveX/RxAndroid

关于RxJava一些不错的文章

二.RetroLambda

安装

1.Download jdk8.

2.Add the following to your build.gradlebuildscript {

repositories {

mavenCentral()

}

dependencies {

classpath 'me.tatarka:gradle-retrolambda:3.2.5'

}

}

// Required because retrolambda is on maven central

repositories {

mavenCentral()

}

apply plugin: 'com.android.application' //or apply plugin: 'java'

apply plugin: 'me.tatarka.retrolambda'

3.build.gradle中加入retrolambda编译依赖buildscript {

dependencies {

classpath 'me.tatarka:gradle-retrolambda:3.1.0'

}

}

4.让AS使用Java8进行语法解析compileOptions {

sourceCompatibility JavaVersion.VERSION_1_8

targetCompatibility JavaVersion.VERSION_1_8

}

5.Configurationretrolambda {

jdk System.getenv("JAVA8_HOME")

oldJdk System.getenv("JAVA6_HOME")

javaVersion JavaVersion.VERSION_1_6

jvmArgs '-arg1', '-arg2'

defaultMethods false

incremental true

}

三.Dagger2

第一步、apply plugin: 'kotlin-android' // 非必须

apply plugin: 'kotlin-android-extensions' // 必须!!!

为什么要加一个新的plugin呢?这个是为后面使用的kapt和provided提供支持的。gradle本身不支持这两个操作。

第二步、buildscript {

ext.kotlin_version = '1.0.1-2'

repositories {

mavenCentral()

}

dependencies {

classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"

}

}

第三步、dependencies {

// ...其他略...

compile 'com.google.dagger:dagger:2.2'

kapt 'com.google.dagger:dagger-compiler:2.2'

provided 'javax.annotation:jsr250-api:1.0'

}dagger, 我们要用的正主。

dagger-compiler, 用来生成代码。

java.annotation, 提供Dagger意外的注解

最后,同步Gradle

相关网站

关于Dagger2不错的文章

四.Stetho(Android调试工具)

1.添加Gradle引用:compile 'com.facebook.stetho:stetho:1.1.0'

只有stetho库是必须的,想查看网络请求的话,需要使用下面的两个库之一(看你的网络库用的是okhttp还是urlconnection)compile 'com.facebook.stetho:stetho-okhttp:1.1.0'

或者compile 'com.facebook.stetho:stetho-urlconnection:1.1.0'

2.在应用Application中添加代码:public class MyApplication extends Application {

public void onCreate() {

super.onCreate();

Stetho.initialize(

Stetho.newInitializerBuilder(this)

.enableDumpapp(Stetho.defaultDumperPluginsProvider(this))

.enableWebKitInspector(Stetho.defaultInspectorModulesProvider(this))

.build());

}}

3.注意:Android 4.4 开始,默认的浏览器已经是 chrome 了,所以 webview 也是 chrome 了,这就给了 webview 远程调试的能力。我们需要在 Android 里针对 Webview 做以下设置:if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

WebView.setWebContentsDebuggingEnabled(true);

}

4.在我们运行完Android程序后,我们打开Chrome,在地址输入chrom://inspect/

参考引用文章

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值