forked from googlesamples/mlkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Internal change - Update sample app's targetSdkVersion to 31 - na - Update Android sample apps' compileSdkVersion to 31 - Add proguard build type for Entity Extraction and language ID sample apps - Update minSdkVersion from 16 to 19 PiperOrigin-RevId: 408440136 Change-Id: I15a36a7aa4deaa9805596e019e541f4fa28a9bb9
- Loading branch information
Google ML Kit
authored and
jackqdyulei
committed
Nov 15, 2021
1 parent
23917b3
commit 2d4e747
Showing
3 changed files
with
19 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
buildscript { | ||
ext.kotlin_version = '1.4.21' | ||
ext.kotlin_version = '1.5.0' | ||
|
||
repositories { | ||
google() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
android.useAndroidX=true | ||
android.enableJetifier=true | ||
|
||
# The setting is particularly useful for tweaking memory settings. | ||
org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=1024m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 | ||
|
||
# Uses one worker to build. This helps resolve build OOM issue. | ||
org.gradle.workers.max=1 |