今天Android Studio发布了1.0版本,Android快速开发框架UltimateAndroid也发布了0.4.1版本来支持AndroidStudio 1.0 。
现在使用框架只需要简单的:
Main framework: 1 2 3 4 5 6 | repositories {
jcenter()
}
dependencies { ...
compile 'com.marshalchen.ultimateandroid:ultimateandroid:0.4.1'
}
|
Ui framework: 1 2 3 4 5 6 | repositories {
jcenter()
}
dependencies { ...
compile 'com.marshalchen.ultimateandroid:ultimateandroidui:0.4.1'
}
|
同时框架也有传统的方式可以使用。 UltimateAndroid是一套Android的开发框架,包括了View Injection,异步网络和图片加载,ORM,各种工具类以及非常丰富的UI效果等等。 github地址:https://github.com/cymcsg/UltimateAndroid (推荐,更新最及时) oschina地址:http://git.oschina.net/marshalchen/UltimateAndroid (开源中国,墙内,国内访问较快) |