Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
android_fiveworld
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
android
android_fiveworld
Commits
095474c8
Commit
095474c8
authored
Jul 08, 2021
by
mengcuiguang2
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
解决冲突
parent
00bf0dde
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
26 deletions
+25
-26
.gitignore
.gitignore
+1
-0
build.gradle
app/build.gradle
+16
-19
AndroidManifest.xml
app/src/main/AndroidManifest.xml
+4
-3
version.properties
library_base/version.properties
+2
-2
ViewAdapter.java
...oldze/mvvmhabit/binding/viewadapter/view/ViewAdapter.java
+1
-1
attrs.xml
mvvmhabit/src/main/res/values/attrs.xml
+1
-1
No files found.
.gitignore
View file @
095474c8
...
...
@@ -8,3 +8,4 @@
.externalNativeBuild
.cxx
/library_ad/build/
/shareSdkLib/build/
app/build.gradle
View file @
095474c8
...
...
@@ -20,6 +20,10 @@ android {
//多个dex
multiDexEnabled
true
//配置so文件
ndk
{
abiFilters
"armeabi"
,
"armeabi-v7a"
,
"x86"
,
"mips"
}
}
buildFeatures
{
...
...
@@ -73,12 +77,6 @@ dependencies {
testImplementation
rootProject
.
ext
.
support
[
"junit"
]
// implementation 'androidx.appcompat:appcompat:1.1.0'
// implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
// testImplementation 'junit:junit:4.12'
// androidTestImplementation 'androidx.test.ext:junit:1.1.1'
// androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
//下拉刷新
implementation
'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-26'
implementation
'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-alpha-26'
...
...
@@ -95,26 +93,25 @@ dependencies {
// 三方接入
// bugly
implementation
'com.tencent.bugly:crashreport:3.3.92'
// 移动安全联盟
compileOnly
files
(
'libs\\oaid_sdk_1.0.23.
aar'
)
implementation
(
name:
'oaid_sdk_1.0.23'
,
ext:
'
aar'
)
// shareSdk
api
project
(
':shareSdkLib'
)
implementation
project
(
':shareSdkLib'
)
// 应用管理中心分包
compileOnly
files
(
'libs\\humesdk-1.0.0.
aar'
)
implementation
(
name:
'humesdk-1.0.0'
,
ext:
'
aar'
)
// umeng
compileOnly
files
(
'libs\\umeng-asms-armeabi-v1.2.2.
aar'
)
compileOnly
files
(
'libs\\umeng-apm-armeabi-v1.2.0.
aar'
)
implementation
(
name:
'umeng-asms-armeabi-v1.2.2'
,
ext:
'
aar'
)
implementation
(
name:
'umeng-apm-armeabi-v1.2.0'
,
ext:
'
aar'
)
// 穿山甲 GroMore
// mediation_ad_sdk
compileOnly
files
(
'libs\\mediation_ad_sdk_2.8.1.0.
aar'
)
compileOnly
files
(
'libs\\gdt_adapter_4.362.1232.0.
aar'
)
compileOnly
files
(
'libs\\ks_adapter_3.3.10.2.0.
aar'
)
implementation
(
name:
'mediation_ad_sdk_2.8.1.0'
,
ext:
'
aar'
)
implementation
(
name:
'gdt_adapter_4.362.1232.0'
,
ext:
'
aar'
)
implementation
(
name:
'ks_adapter_3.3.10.2.0'
,
ext:
'
aar'
)
// 快手
compileOnly
files
(
'libs\\kssdk-ad-3.3.10.2.
aar'
)
implementation
(
name:
'kssdk-ad-3.3.10.2'
,
ext:
'
aar'
)
// 穿山甲广告
compileOnly
files
(
'libs\\open_ad_sdk_3.7.0.1.
aar'
)
implementation
(
name:
'open_ad_sdk_3.7.0.1'
,
ext:
'
aar'
)
// 广点通广告 腾讯
compileOnly
files
(
'libs\\GDTSDK.unionNormal.4.362.1232.aar'
)
implementation
(
name:
'GDTSDK.unionNormal.4.362.1232'
,
ext:
'aar'
)
}
\ No newline at end of file
app/src/main/AndroidManifest.xml
View file @
095474c8
...
...
@@ -58,11 +58,11 @@
</provider>
<!-- 穿山甲广告 -->
<provider
android:name=
"com.bytedance.sdk.openadsdk.multipro.TTMultiProvider"
android:authorities=
"
${applicationId}
.TTMultiProvider"
android:authorities=
"
com.mints.street
.TTMultiProvider"
android:exported=
"false"
/>
<provider
android:name=
"com.bytedance.sdk.openadsdk.TTFileProvider"
android:authorities=
"
${applicationId}
.TTFileProvider"
android:authorities=
"
com.mints.street
.TTFileProvider"
android:exported=
"false"
android:grantUriPermissions=
"true"
tools:replace=
"android:authorities"
>
...
...
@@ -70,7 +70,8 @@
android:name=
"android.support.FILE_PROVIDER_PATHS"
android:resource=
"@xml/file_paths"
tools:replace=
"android:resource"
/>
</provider>
<!-- 广点通广告 -->
</provider>
<!-- 广点通广告 -->
<uses-library
android:name=
"org.apache.http.legacy"
android:required=
"false"
/>
...
...
library_base/version.properties
View file @
095474c8
#Thu Jul 08 19:
52:09
CST 2021
VERSION_BUILD
=
26
13
#Thu Jul 08 19:
44:12
CST 2021
VERSION_BUILD
=
26
31
mvvmhabit/src/main/java/me/goldze/mvvmhabit/binding/viewadapter/view/ViewAdapter.java
View file @
095474c8
...
...
@@ -109,7 +109,7 @@ public class ViewAdapter {
});
}
@BindingAdapter
(
value
=
{
"viewZ"
,
/*"outline",*/
"shadowColor"
},
requireAll
=
false
)
@BindingAdapter
(
value
=
{
"viewZ"
,
/*"outline",*/
"shadowColor
2
"
},
requireAll
=
false
)
public
static
void
setViewZ
(
View
view
,
int
z
,
int
color
){
ViewCompat
.
setElevation
(
view
,
AppUtils
.
dp2Px
(
view
.
getContext
(),
z
));
...
...
mvvmhabit/src/main/res/values/attrs.xml
View file @
095474c8
...
...
@@ -37,7 +37,7 @@
<attr
name=
"isThrottleFirst"
/>
<attr
name=
"currentView"
/>
<attr
name=
"viewZ"
format=
"integer"
/>
<attr
name=
"shadowColor"
format=
"integer"
/>
<attr
name=
"shadowColor
2
"
format=
"integer"
/>
<attr
name=
"selected"
format=
"boolean"
/>
</declare-styleable>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment