Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file removed app/app-release.apk
Binary file not shown.
23 changes: 14 additions & 9 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.yundian.celebrity"
applicationId "com.cloudTop.starshare"
minSdkVersion 16
targetSdkVersion 22
versionCode 20170830
Expand Down Expand Up @@ -95,12 +95,12 @@ dependencies {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'

compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.flyco.tablayout:FlycoTabLayout_Lib:2.1.2@aar'
//菜单栏
compile 'com.github.bumptech.glide:glide:3.6.1'
//显示图片框架

//compile 'com.github.jdsjlzx:LRecyclerView:1.4.3'
compile 'com.android.support:multidex:1.0.0'
//分包
Expand All @@ -118,11 +118,17 @@ dependencies {
compile 'org.greenrobot:eventbus:3.0.0'
compile files('libs/alipaySingle-20170510.jar')
// compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {

// transitive = true;

// }

//fabric

//compile project(':qAMasterSDK')

//compile 'com.getui:sdk:2.10.2.0'

//compile 'org.greenrobot:greendao:3.2.2' // add library
compile 'com.qiangxi.checkupdatelibrary:checkupdatelibrary:1.1.2@aar'
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.1'
Expand All @@ -135,37 +141,36 @@ dependencies {
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile 'org.robolectric:robolectric:3.0'
// required if you want to use Powermock for unit tests

// testCompile 'org.powermock:powermock-module-junit4:1.5.6'

// testCompile 'org.powermock:powermock-module-junit4-rule:1.5.6'

// testCompile 'org.powermock:powermock-api-mockito:1.5.6'

// compile 'com.google.dagger:dagger:2.0.2'
compile 'javax.annotation:jsr250-api:1.0'
apt 'com.google.dagger:dagger-compiler:2.0.2'
testCompile 'com.github.fabioCollini:DaggerMock:0.6.1'
androidTestCompile 'com.github.fabioCollini:DaggerMock:0.6.1'
compile project(':qAMasterSDK')
compile project(path: ':library')


testCompile 'org.powermock:powermock-module-junit4:1.6.2'
testCompile 'org.powermock:powermock-module-junit4-rule:1.6.2'
testCompile 'org.powermock:powermock-api-mockito:1.6.2'
testCompile 'org.powermock:powermock-classloading-xstream:1.6.2'

compile files('libs/pldroid-shortvideo-1.2.1.jar')
compile 'com.android.support:multidex:1.0.1'
compile 'com.qiniu:qiniu-android-sdk:7.3.3'
compile(name: 'kw-filter', ext: 'aar')
compile(name: 'kw-tracker', ext: 'aar')
compile 'com.qiniu:happy-dns:0.2.+'

compile 'com.shuyu:gsyVideoPlayer-java:2.0.5'

//根据你的需求
//根据你的需求
compile 'com.shuyu:gsyVideoPlayer-armv5:2.0.5'
compile 'com.shuyu:gsyVideoPlayer-armv7a:2.0.5'
compile 'com.shuyu:gsyVideoPlayer-arm64:2.0.5'
compile 'com.shuyu:gsyVideoPlayer-x64:2.0.5'
compile 'com.shuyu:gsyVideoPlayer-x86:2.0.5'

// compile project(':kiwi')
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.yundian.celebrity;
package com.cloudTop.starshare;

import android.content.Context;
import android.support.test.InstrumentationRegistry;
Expand All @@ -21,6 +21,6 @@ public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();

assertEquals("com.yundian.celebrity", appContext.getPackageName());
assertEquals("com.cloudTop.starshare", appContext.getPackageName());
}
}
Loading