Skip to content

Commit

Permalink
Set jvm target in android build
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDoctorDE committed Oct 23, 2023
1 parent 4b5a53d commit eddf012
Show file tree
Hide file tree
Showing 5 changed files with 81 additions and 75 deletions.
2 changes: 1 addition & 1 deletion FLUTTER_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.16.0-0.2.pre
3.16.0-0.3.pre
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

## Reporting a Vulnerability

Please use [the bug tracker](https://github.com/LinwoodDev/Flow/issues) or use <[email protected]> if there are a critical bug.
Please use [the bug tracker](https://github.com/LinwoodDev/Flow/issues) or use <[email protected]> if there is a critical bug.

## Branches

Expand Down
5 changes: 4 additions & 1 deletion app/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
}

kotlinOptions {
jvmTarget = '1.8'
}

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "dev.linwood.flow"
Expand Down Expand Up @@ -95,7 +99,6 @@ flutter {
source '../..'
}


dependencies {
testImplementation 'junit:junit:5.8.2'
testImplementation "com.google.truth:truth:1.1.3"
Expand Down
1 change: 1 addition & 0 deletions app/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:label="Flow"
android:name="${applicationName}"
Expand Down
Loading

0 comments on commit eddf012

Please sign in to comment.