Merge pull request #3776 from element-hq/feature/bma/targetApi35
Target api 35
This commit is contained in:
@@ -48,9 +48,9 @@ android {
|
||||
} else {
|
||||
"io.element.android.x"
|
||||
}
|
||||
targetSdk = Versions.targetSdk
|
||||
versionCode = Versions.versionCode
|
||||
versionName = Versions.versionName
|
||||
targetSdk = Versions.TARGET_SDK
|
||||
versionCode = Versions.VERSION_CODE
|
||||
versionName = Versions.VERSION_NAME
|
||||
|
||||
// Keep abiFilter for the universalApk
|
||||
ndk {
|
||||
|
||||
@@ -183,6 +183,7 @@ private fun WebView.setup(
|
||||
allowFileAccess = true
|
||||
domStorageEnabled = true
|
||||
mediaPlaybackRequiresUserGesture = false
|
||||
@Suppress("DEPRECATION")
|
||||
databaseEnabled = true
|
||||
loadsImagesAutomatically = true
|
||||
userAgentString = userAgent
|
||||
|
||||
@@ -46,7 +46,7 @@ class DefaultShareService @Inject constructor(
|
||||
PackageManager.GET_ACTIVITIES or PackageManager.MATCH_DISABLED_COMPONENTS
|
||||
)
|
||||
.activities
|
||||
.firstOrNull { it.name.endsWith(".ShareActivity") }
|
||||
?.firstOrNull { it.name.endsWith(".ShareActivity") }
|
||||
?.let { shareActivityInfo ->
|
||||
ComponentName(
|
||||
shareActivityInfo.packageName,
|
||||
|
||||
@@ -86,6 +86,7 @@ fun OidcView(
|
||||
javaScriptEnabled = true
|
||||
allowContentAccess = true
|
||||
allowFileAccess = true
|
||||
@Suppress("DEPRECATION")
|
||||
databaseEnabled = true
|
||||
domStorageEnabled = true
|
||||
}
|
||||
|
||||
@@ -50,10 +50,10 @@ private const val versionMinor = 7
|
||||
private const val versionPatch = 3
|
||||
|
||||
object Versions {
|
||||
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch
|
||||
val versionName = "$versionMajor.$versionMinor.$versionPatch"
|
||||
const val compileSdk = 34
|
||||
const val targetSdk = 34
|
||||
const val VERSION_CODE = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch
|
||||
const val VERSION_NAME = "$versionMajor.$versionMinor.$versionPatch"
|
||||
const val COMPILE_SDK = 35
|
||||
const val TARGET_SDK = 35
|
||||
|
||||
// When updating the `minSdk`, make sure to update the value of `minSdkVersion` in the file `tools/release/release.sh`
|
||||
val minSdk = if (isEnterpriseBuild) 26 else 24
|
||||
|
||||
@@ -15,7 +15,7 @@ import java.io.File
|
||||
|
||||
fun CommonExtension<*, *, *, *, *, *>.androidConfig(project: Project) {
|
||||
defaultConfig {
|
||||
compileSdk = Versions.compileSdk
|
||||
compileSdk = Versions.COMPILE_SDK
|
||||
minSdk = Versions.minSdk
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
|
||||
|
||||
@@ -14,9 +14,9 @@ android {
|
||||
|
||||
defaultConfig {
|
||||
applicationId = "io.element.android.samples.minimal"
|
||||
targetSdk = Versions.targetSdk
|
||||
versionCode = Versions.versionCode
|
||||
versionName = Versions.versionName
|
||||
targetSdk = Versions.TARGET_SDK
|
||||
versionCode = Versions.VERSION_CODE
|
||||
versionName = Versions.VERSION_NAME
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user