Skip to content

Commit

Permalink
fix Updrage comiple sdk andriod
Browse files Browse the repository at this point in the history
  • Loading branch information
rsanjuan87 committed Sep 30, 2024
1 parent 6c5399b commit 4641cad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ apply plugin: 'kotlin-android'

android {
compileSdkVersion 33

namespace 'com.sample.edgedetection'
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
Expand All @@ -39,6 +39,10 @@ android {
buildFeatures {
viewBinding = true
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8
}
}

dependencies {
Expand Down
3 changes: 2 additions & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sample.edgedetection">
>
<!-- package="com.sample.edgedetection"-->

<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera.any" android:required="true" />
Expand Down

0 comments on commit 4641cad

Please sign in to comment.