Skip to content
Open

tommy #181

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,29 @@ version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
jcenter()
mavenCentral() // Replace jcenter() with mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:7.4.2' // Update to a newer AGP version
}
}

rootProject.allprojects {
allprojects {
repositories {
google()
jcenter()
mavenCentral() // Replace jcenter() with mavenCentral()
}
}

apply plugin: 'com.android.library'

android {
compileSdkVersion 33
namespace 'com.example.video_thumbnail'

defaultConfig {
minSdkVersion 16
minSdkVersion 24 // Align with your app’s minSdk 24
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
Expand Down
3 changes: 1 addition & 2 deletions android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="xyz.justsoft.video_thumbnail">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
</manifest>