Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MYID Public Code
MyID Sample Android
Commits
89970f75
Commit
89970f75
authored
Apr 23, 2025
by
Javokhir
Browse files
2.4.1
parent
c20efd36
Changes
27
Hide whitespace changes
Inline
Side-by-side
app/src/main/res/values/themes.xml
View file @
89970f75
<resources>
<resources>
<style
name=
"Theme.MyIdSample"
parent=
"Theme.Material3.Light.NoActionBar"
/>
<style
name=
"Base.Theme.MyId"
parent=
"Theme.Material3.DayNight.NoActionBar"
/>
<style
name=
"Theme.MyId"
parent=
"Base.Theme.MyId"
/>
</resources>
</resources>
\ No newline at end of file
build.gradle
deleted
100644 → 0
View file @
c20efd36
plugins
{
id
"com.android.application"
version
"7.3.0"
apply
false
id
"com.android.library"
version
"7.3.0"
apply
false
id
"org.jetbrains.kotlin.android"
version
"1.7.10"
apply
false
}
\ No newline at end of file
build.gradle.kts
0 → 100644
View file @
89970f75
plugins
{
alias
(
libs
.
plugins
.
android
.
application
)
apply
false
alias
(
libs
.
plugins
.
kotlin
.
android
)
apply
false
}
\ No newline at end of file
gradle.properties
View file @
89970f75
org.gradle.jvmargs
=
-Xmx4096m -Dfile.encoding=UTF-8
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs
=
-Xmx2048m -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. For more details, visit
# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
# org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX
=
true
android.useAndroidX
=
true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style
=
official
kotlin.code.style
=
official
android.enableJetifier
=
true
# Enables namespacing of each library's R class so that its R class includes only the
\ No newline at end of file
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass
=
true
\ No newline at end of file
gradle/libs.versions.toml
0 → 100644
View file @
89970f75
[versions]
agp
=
"8.5.2"
kotlin
=
"2.1.0"
androidx-core
=
"1.15.0"
androidx-appcompat
=
"1.7.0"
androidx-activity
=
"1.10.1"
google-material
=
"1.12.0"
myid
=
"2.4.1"
[libraries]
androidx-core
=
{
module
=
"androidx.core:core-ktx"
,
version.ref
=
"androidx-core"
}
androidx-appcompat
=
{
module
=
"androidx.appcompat:appcompat"
,
version.ref
=
"androidx-appcompat"
}
androidx-activity
=
{
module
=
"androidx.activity:activity-compose"
,
version.ref
=
"androidx-activity"
}
google-material
=
{
module
=
"com.google.android.material:material"
,
version.ref
=
"google-material"
}
myid
=
{
module
=
"uz.myid.sdk.capture:myid-capture-sdk"
,
version.ref
=
"myid"
}
myid-video
=
{
module
=
"uz.myid.sdk.capture:myid-video-capture-sdk"
,
version.ref
=
"myid"
}
[plugins]
android-application
=
{
id
=
"com.android.application"
,
version.ref
=
"agp"
}
kotlin-android
=
{
id
=
"org.jetbrains.kotlin.android"
,
version.ref
=
"kotlin"
}
gradle/wrapper/gradle-wrapper.properties
View file @
89970f75
#
Mon May 16 21:32:32
UZT 202
2
#
Wed Apr 23 15:43:15
UZT 202
5
distributionBase
=
GRADLE_USER_HOME
distributionBase
=
GRADLE_USER_HOME
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-7.4-bin.zip
distributionPath
=
wrapper/dists
distributionPath
=
wrapper/dists
zipStorePath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-8.13-bin.zip
zipStoreBase
=
GRADLE_USER_HOME
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
\ No newline at end of file
settings.gradle
→
settings.gradle
.kts
View file @
89970f75
pluginManagement
{
pluginManagement
{
repositories
{
repositories
{
gradlePluginPortal
()
google
{
google
()
content
{
includeGroupByRegex
(
"com\\.android.*"
)
includeGroupByRegex
(
"com\\.google.*"
)
includeGroupByRegex
(
"androidx.*"
)
}
}
mavenCentral
()
mavenCentral
()
gradlePluginPortal
()
}
}
}
}
dependencyResolutionManagement
{
dependencyResolutionManagement
{
repositoriesMode
.
set
(
RepositoriesMode
.
FAIL_ON_PROJECT_REPOS
)
repositoriesMode
.
set
(
RepositoriesMode
.
FAIL_ON_PROJECT_REPOS
)
repositories
{
repositories
{
google
()
google
()
mavenCentral
()
mavenCentral
()
maven
{
url
"https://artifactory.aigroup.uz:443/artifactory/myid
"
}
maven
(
"https://artifactory.aigroup.uz:443/artifactory/myid
/"
)
}
}
}
}
rootProject
.
name
=
"myid-android
-sample
"
rootProject
.
name
=
"myid-
sample-
android"
include
":app"
include
(
":app"
)
\ No newline at end of file
Prev
1
2
Next
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