Android修炼之道—Bootstrap框架

依赖库:

Bootstrap依赖库
dependencies {
    compile 'com.android.support:appcompat-v7:19.1.+'// did it
    compile 'com.google.code.gson:gson:2.2.4' //google json
    compile 'com.squareup.dagger:dagger:1.0.1' //依赖注入
    compile 'com.squareup.dagger:dagger-compiler:1.0.1' //同上
    compile 'com.jakewharton:butterknife:1.3.2' //view 的依赖注入
    compile 'com.actionbarsherlock:viewpagerindicator:2.4.1'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.github.kevinsawicki:android-pusher:0.6' // i don't know
    compile 'com.github.kevinsawicki:wishlist:0.9' //kevinsawicki自己写的很多组件
    compile 'com.squareup:otto:1.3.4' //otto是Android系统的一个EventBus模式类库。用来简化应用组件间的通信
    compile 'com.squareup.picasso:picasso:1.1.1' //图片缓存
    compile 'com.squareup.retrofit:retrofit:1.5.1' //retrofit 是一个类型安全的 REST 客户端



    androidTestCompile 'junit:junit:4.11'
    androidTestCompile 'org.hamcrest:hamcrest-library:1.3'
    androidTestCompile 'org.mockito:mockito-core:1.9.5'
}

你可能感兴趣的:(Android修炼之道—Bootstrap框架)