Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
AndroidUtils
NavigationDrawerActivity
Commits
11f01b69
Commit
11f01b69
authored
Aug 12, 2021
by
Daniel Wolf
Browse files
Merge branch 'master' of
https://git.frostnerd.com/AndroidUtils/baselibrarykt
parents
3d7af54b
1cc6fa10
Changes
4
Hide whitespace changes
Inline
Side-by-side
.idea/compiler.xml
View file @
11f01b69
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"CompilerConfiguration"
>
<bytecodeTargetLevel
target=
"1
1
"
/>
<bytecodeTargetLevel
target=
"1
4
"
/>
</component>
</project>
\ No newline at end of file
build.gradle
View file @
11f01b69
...
...
@@ -27,11 +27,11 @@ buildscript {
ext
.
ANDROID_COMPILE_SDK
=
(
System
.
getenv
(
"ANDROID_COMPILE_SDK"
)
==
null
?
30
:
System
.
getenv
(
"ANDROID_COMPILE_SDK"
)).
toInteger
()
ext
.
ANDROID_TARGET_SDK
=
(
System
.
getenv
(
"ANDROID_TARGET_SDK"
)
==
null
?
ANDROID_COMPILE_SDK
:
System
.
getenv
(
"ANDROID_TARGET_SDK"
)).
toInteger
()
ext
.
ANDROID_MIN_SDK
=
(
System
.
getenv
(
"ANDROID_MIN_SDK"
)
==
null
?
21
:
System
.
getenv
(
"ANDROID_COMPILE_SDK"
)).
toInteger
()
ext
.
KOTLIN_VERSION
=
System
.
getenv
(
"KOTLIN_VERSION"
)
==
null
?
"1.5.1
0
"
:
System
.
getenv
(
"KOTLIN_VERSION"
)
ext
.
ANDROID_GRADLE_PLUGIN_VERSION
=
System
.
getenv
(
"ANDROID_GRADLE_PLUGIN_VERSION"
)
==
null
?
"
4.2.1
"
:
System
.
getenv
(
"ANDROID_GRADLE_PLUGIN_VERSION"
)
ext
.
APPCOMPAT_VERSION
=
"1.3.
0-rc0
1"
ext
.
COROUTINE_VERSION
=
"1.5.
0
"
ext
.
RECYCLERVIEW_VERSION
=
"1.
1
.0"
ext
.
KOTLIN_VERSION
=
System
.
getenv
(
"KOTLIN_VERSION"
)
==
null
?
"1.5.
2
1"
:
System
.
getenv
(
"KOTLIN_VERSION"
)
ext
.
ANDROID_GRADLE_PLUGIN_VERSION
=
System
.
getenv
(
"ANDROID_GRADLE_PLUGIN_VERSION"
)
==
null
?
"
7.0.0
"
:
System
.
getenv
(
"ANDROID_GRADLE_PLUGIN_VERSION"
)
ext
.
APPCOMPAT_VERSION
=
"1.3.1"
ext
.
COROUTINE_VERSION
=
"1.5.
1
"
ext
.
RECYCLERVIEW_VERSION
=
"1.
2
.0"
ext
.
ROBOELECTRIC_VERSION
=
"4.3"
println
"COMPILE SDK Version: $ANDROID_COMPILE_SDK"
...
...
gradle/wrapper/gradle-wrapper.properties
View file @
11f01b69
...
...
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath
=
wrapper/dists
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
6.9
-all.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
7.1.1
-all.zip
library/build.gradle
View file @
11f01b69
...
...
@@ -61,10 +61,10 @@ dependencies {
implementation
"org.jetbrains.kotlinx:kotlinx-coroutines-core:$COROUTINE_VERSION"
implementation
"org.jetbrains.kotlinx:kotlinx-coroutines-android:$COROUTINE_VERSION"
testImplementation
'junit:junit:4.13.
1
'
testImplementation
'junit:junit:4.13.
2
'
//testImplementation "org.robolectric:robolectric:$ROBOELECTRIC_VERSION"
androidTestImplementation
'androidx.test:runner:1.
3
.0'
androidTestImplementation
'androidx.test.espresso:espresso-core:3.
3
.0'
androidTestImplementation
'androidx.test:runner:1.
4
.0'
androidTestImplementation
'androidx.test.espresso:espresso-core:3.
4
.0'
}
configurations
.
all
{
...
...
Write
Preview
Supports
Markdown
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