Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
mobile_scanner
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Navaron Bracke
2024-04-22 13:40:04 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c445f89fc9d65f51ad19d25aabbfd65de9cb3e39
c445f89f
1 parent
36e9f496
do not explicitly depend on the Kotlin Standard Library
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
4 deletions
android/build.gradle
android/build.gradle
View file @
c445f89
...
...
@@ -2,7 +2,6 @@ group 'dev.steenbakker.mobile_scanner'
version
'1.0-SNAPSHOT'
buildscript
{
ext
.
kotlin_version
=
'1.7.22'
repositories
{
google
()
mavenCentral
()
...
...
@@ -10,7 +9,7 @@ buildscript {
dependencies
{
classpath
'com.android.tools.build:gradle:8.3.2'
classpath
"org.jetbrains.kotlin:kotlin-gradle-plugin:
$kotlin_version
"
classpath
"org.jetbrains.kotlin:kotlin-gradle-plugin:
1.7.22
"
}
}
...
...
@@ -64,8 +63,6 @@ android {
}
dependencies
{
implementation
"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
def
useUnbundled
=
project
.
findProperty
(
'dev.steenbakker.mobile_scanner.useUnbundled'
)
?:
false
if
(
useUnbundled
.
toBoolean
())
{
// Dynamically downloaded model via Google Play Services
...
...
Please
register
or
login
to post a comment