diff --git a/app/build.gradle b/app/build.gradle index 3d53ec5a..8cd3e6fe 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,6 +2,7 @@ plugins { id 'com.android.application' id 'kotlin-android' id 'kotlin-android-extensions' + id 'kotlin-kapt' } android { @@ -12,10 +13,14 @@ android { applicationId "com.lagradost.cloudstream3" minSdkVersion 21 targetSdkVersion 30 - versionCode 1 - versionName "1.0" + versionCode 3 + versionName "1.1.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + + kapt { + includeCompileClasspath = true + } } buildTypes { @@ -31,6 +36,7 @@ android { } kotlinOptions { jvmTarget = '1.8' + freeCompilerArgs = ['-Xjvm-default=compatibility'] } } @@ -43,9 +49,9 @@ repositories { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" - implementation 'androidx.core:core-ktx:1.5.0' + implementation 'androidx.core:core-ktx:1.6.0' implementation 'androidx.appcompat:appcompat:1.3.0' - implementation 'com.google.android.material:material:1.3.0' + implementation 'com.google.android.material:material:1.4.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5' implementation 'androidx.navigation:navigation-ui-ktx:2.3.5' @@ -54,14 +60,14 @@ dependencies { implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5' implementation 'androidx.navigation:navigation-ui-ktx:2.3.5' testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.2' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' + androidTestImplementation 'androidx.test.ext:junit:1.1.3' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' implementation "io.karn:khttp-android:0.1.2" implementation 'org.jsoup:jsoup:1.13.1' implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.11.3" - implementation("com.google.android.material:material:1.3.0") + implementation("com.google.android.material:material:1.4.0") implementation "androidx.preference:preference-ktx:1.1.1" @@ -71,8 +77,18 @@ dependencies { implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' // Exoplayer - implementation 'com.google.android.exoplayer:exoplayer:2.14.1' - implementation 'com.google.android.exoplayer:extension-cast:2.14.1' - implementation "com.google.android.exoplayer:extension-mediasession:2.14.1" + implementation 'com.google.android.exoplayer:exoplayer:2.14.2' + implementation 'com.google.android.exoplayer:extension-cast:2.14.2' + implementation "com.google.android.exoplayer:extension-mediasession:2.14.2" //implementation "com.google.android.exoplayer:extension-leanback:2.14.0" + + // Bug reports + implementation "ch.acra:acra-core:5.8.4" + implementation "ch.acra:acra-toast:5.8.4" + + compileOnly "com.google.auto.service:auto-service-annotations:1.0" + //either for java sources: + annotationProcessor "com.google.auto.service:auto-service:1.0" + //or for kotlin sources (requires kapt gradle plugin): + kapt "com.google.auto.service:auto-service:1.0" } \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index c18da128..e6282501 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -10,6 +10,7 @@ + + diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 66d86952..39fb6939 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -30,6 +30,7 @@ Dropped Plan to Watch None + Play Movie Sources Subtitles @@ -42,10 +43,15 @@ Error Loading Links Internal Storage Options + Dub Sub + Delete File Play File Resume Download Pause Download + + Sorry, the application crashed. An anonymous bug report will be sent to the developers + Disable automatic bug reporting \ No newline at end of file diff --git a/app/src/main/res/xml/settings.xml b/app/src/main/res/xml/settings.xml index 8456618a..34e954e3 100644 --- a/app/src/main/res/xml/settings.xml +++ b/app/src/main/res/xml/settings.xml @@ -49,6 +49,13 @@ android:summary="Tap twice on the right or left side to seek forwards or backwards" app:defaultValue="false" /> +