Updated 8 files (automated)

mane
Mia Raindrops 1 week ago
parent 7259fc1d1c
commit aa35a851a3
Signed by: Mia Raindrops
GPG Key ID: EFBDC68435A574B7

@ -9,8 +9,8 @@
<option name="externalProjectPath" value="/Volumes/Unicorn/delta-android" />
<option name="modules">
<set>
<option value="/Volumes/Unicorn/delta-android" />
<option value="/Volumes/Unicorn/delta-android/app" />
<option value="/Volumes/Projects/delta-android" />
<option value="/Volumes/Projects/delta-android/app" />
</set>
</option>
</GradleProjectSettings>

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" project-jdk-name="17" project-jdk-type="JavaSDK">
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="jbr-17" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">

@ -2,6 +2,7 @@
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
<mapping directory="/Volumes/Projects/delta-android" vcs="Git" />
<mapping directory="/Volumes/Unicorn/delta-android" vcs="Git" />
</component>
</project>

@ -13,7 +13,7 @@ android {
minSdk = 27
targetSdk = 33
versionCode = 2
versionName = "5.0-8"
versionName = "5.0-9"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
resConfigs("en", "fr")
@ -35,6 +35,7 @@ android {
kotlinOptions {
jvmTarget = "1.8"
}
buildToolsVersion = "33.0.1"
buildFeatures {
viewBinding = true
}

@ -325,7 +325,13 @@ class MainActivity : AppCompatActivity() {
url
).path.startsWith("/support/") || URL(url).path === "/support" || URL(url).path.startsWith(
"/mobile_profile/"
) || URL(url).path === "/mobile_profile"
) || URL(url).path === "/mobile_profile" || URL(url).path.startsWith(
"/beta/"
) || URL(url).path === "/beta" || URL(url).path.startsWith(
"/studio/"
) || URL(url).path === "/studio" || URL(url).path.startsWith(
"/logout/"
) || URL(url).path === "/logout"
) {
changedNavItem = true
binding.navigationBar.selectedItemId = R.id.navigation_profile

@ -15,8 +15,8 @@ buildscript {
}
plugins {
id("com.android.application") version "8.0.0-alpha11" apply false
id("com.android.library") version "8.0.0-alpha11" apply false
id("com.android.application") version "8.1.0-alpha08" apply false
id("com.android.library") version "8.1.0-alpha08" apply false
id("org.jetbrains.kotlin.android") version "1.7.21" apply false
}

@ -20,4 +20,5 @@ kotlin.code.style=official
# Enables namespacing of each library's R class so that its R class includes only the
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true
android.nonTransitiveRClass=true
android.nonFinalResIds=false

@ -1,6 +1,6 @@
#Tue Dec 27 09:59:20 CET 2022
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

Loading…
Cancel
Save