build.gradle 3.96 KB
apply plugin: 'com.android.library'

android {

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }

}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'androidx.appcompat:appcompat:1.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

    /** 圆形图片处理  androidx  **/
    implementation 'de.hdodenhof:circleimageview:3.0.1'

    /*下拉刷新 上拉加载更多*/
    implementation 'com.github.Aspsine:SwipeToLoadLayout:1.0.4'

    /*http类 有jar包*/
    implementation 'com.zhy:okhttputils:2.6.2'

    /*fastjson */
    implementation 'com.alibaba:fastjson:1.2.61'

    /*轮播图*/
    implementation 'com.bigkoo:convenientbanner:2.1.5'

    /*滚动播放的公告控件*/
    implementation 'com.github.czy1121:noticeview:1.1.0'

    /*图片剪切 */
    implementation('com.kevin:crop:1.0.2') {
        // 如果已经引入 support:appcompat-v7 可以加上这句话
        exclude group: 'com.android.support', module: 'appcompat-v7'
    }

    /*倒计时控件*/
    implementation 'com.github.iwgang:countdownview:2.1.6'

    /*可添加header和footer的recyclerview adapter*/
    implementation 'com.songhang:smart-headerfooter-recyclerview:1.0.1'

    /*二维码*/
    implementation 'com.google.zxing:core:3.3.0'

//    implementation ('cn.yipianfengye.android:zxing-library:2.2'){
//        // 如果已经引入 support:appcompat-v7 可以加上这句话
//        exclude group: 'com.google.zxing'
//        transitive = false
//    }

    /*动态权限 androidx*/
    implementation 'pub.devrel:easypermissions:3.0.0'

    /*图片选择*/
    implementation 'me.iwf.photopicker:PhotoPicker:0.9.5@aar'

    /*图片选择*/
    implementation 'me.iwf.photopicker:PhotoPicker:0.9.12@aar'

    /*一个Android TabLayout库*/
    implementation 'com.flyco.tablayout:FlycoTabLayout_Lib:2.1.2@aar'

    /*应用卡顿检测*/
    debugImplementation 'com.github.markzhai:blockcanary-android:1.5.0'
    releaseImplementation 'com.github.markzhai:blockcanary-no-op:1.5.0'

    /*友盟统计*/
    implementation 'com.umeng.analytics:analytics:latest.integration'

    /*Float Labeled EditText*/
    implementation 'com.wrapp.floatlabelededittext:library:0.0.6'

    /* 状态栏颜色     */
    implementation 'com.githang:status-bar-compat:0.7'

    /*微信*/
//    implementation 'com.tencent.mm.opensdk:wechat-sdk-android-with-mta:+'

    /*自定义各种形状的imageview  */
    implementation 'com.github.siyamed:android-shape-imageview:0.9.+@aar'

    //    compile 'com.android.support:appcompat-v7:23.4.0'

    //    compile 'com.android.support:recyclerview-v7:23.4.0'

    //    compile 'com.android.support:design:23.4.0'
    implementation files('libs/alipaySingle-20161222.jar')
//    implementation files('libs/BaiduLBS_Android.jar')
    implementation files('libs/bankabccaller.jar')
    implementation files('libs/EhkingSDK-v2.0.jar')
    implementation files('libs/jackson-all-1.9.11.jar')
    implementation files('libs/MagicWindowSDK.jar')
    implementation files('libs/mqqopenpay.jar')
    implementation files('libs/SecurityEnvSDK-release-1.1.0.jar')
    implementation files('libs/umeng-common-1.5.3.jar')
    implementation files('libs/umeng-share-core-6.9.2.jar')
//    implementation files('libs/umeng-share-QQ-simplify-6.9.2.jar')
//    implementation files('libs/umeng-share-sina-simplify-6.9.2.jar')
//    implementation files('libs/umeng-share-wechat-simplify-6.9.2.jar')
//    implementation files('libs/umeng-share-sina-simplify-6.9.2.jar')
    implementation files('libs/umeng-shareboard-widget-6.9.2.jar')
    implementation files('libs/umeng-sharetool-6.9.2.jar')
    implementation files('libs/UPPayAssistEx.jar')
    implementation files('libs/UPPayPluginExPro.jar')


}