diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..c136dab --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +MonsterCards \ No newline at end of file diff --git a/Android/app/build.gradle b/Android/app/build.gradle index d55b115..93f71c7 100644 --- a/Android/app/build.gradle +++ b/Android/app/build.gradle @@ -11,21 +11,15 @@ if (propertiesFile.exists()) { def appCenterLocalSecret = properties.getProperty('appCenter.localSecret') def appCenterEnvSecret = System.getenv('APPCENTER_SECRET') def appCenterSecret = appCenterLocalSecret != null ? appCenterLocalSecret : appCenterEnvSecret != null ? appCenterEnvSecret : "" -def appCenterSdkVersion = '5.0.4' -def nav_version = '2.9.8' -def room_version = '2.8.4' -def rxjava_version = '3.1.8' -def rxandroid_version = '3.0.2' -def gson_version = '2.11.0' android { namespace "com.majinnaibu.monstercards" - compileSdk 35 + compileSdk 37 defaultConfig { applicationId "com.majinnaibu.monstercards" - minSdkVersion 23 - targetSdk 35 + minSdkVersion 24 + targetSdk 36 versionCode 1 versionName "1.0" buildConfigField "String", "APPCENTER_SECRET", "\"${appCenterSecret}\"" @@ -76,35 +70,35 @@ dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) // Google - implementation 'androidx.appcompat:appcompat:1.3.1' - implementation 'com.google.android.material:material:1.4.0' - implementation 'androidx.constraintlayout:constraintlayout:2.1.0' - implementation "androidx.navigation:navigation-fragment:$nav_version" - implementation "androidx.navigation:navigation-ui:$nav_version" + implementation 'androidx.appcompat:appcompat:1.8.0' + implementation 'com.google.android.material:material:1.14.0' + implementation 'androidx.constraintlayout:constraintlayout:2.2.2' + implementation "androidx.navigation:navigation-fragment:2.10.1" + implementation "androidx.navigation:navigation-ui:2.10.1" implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0' - implementation 'androidx.recyclerview:recyclerview:1.2.1' - implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1' - implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1' + implementation 'androidx.recyclerview:recyclerview:1.4.0' + implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.11.0' + implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.11.0' // Testing testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.3' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' + androidTestImplementation 'androidx.test.ext:junit:1.3.0' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0' // Room DB - implementation "io.reactivex.rxjava3:rxjava:$rxjava_version" - implementation "io.reactivex.rxjava3:rxandroid:$rxandroid_version" - implementation "androidx.room:room-runtime:$room_version" - annotationProcessor "androidx.room:room-compiler:$room_version" - implementation "androidx.room:room-rxjava3:$room_version" - //testImplementation "androidx.room:room-testing:$room_version" + implementation "io.reactivex.rxjava3:rxjava:3.1.12" + implementation "io.reactivex.rxjava3:rxandroid:3.0.2" + implementation "androidx.room:room-runtime:2.8.5" + annotationProcessor "androidx.room:room-compiler:2.8.5" + implementation "androidx.room:room-rxjava3:2.8.5" + //testImplementation "androidx.room:room-testing:2.8.5" // AppCenter - debugImplementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}" - debugImplementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}" + debugImplementation "com.microsoft.appcenter:appcenter-analytics:5.0.6" + debugImplementation "com.microsoft.appcenter:appcenter-crashes:5.0.6" // Other 3rd Party - implementation 'com.atlassian.commonmark:commonmark:0.15.2' - implementation "com.google.code.gson:gson:$gson_version" + implementation 'com.atlassian.commonmark:commonmark:0.17.0' + implementation "com.google.code.gson:gson:2.14.0" } diff --git a/Android/app/src/main/AndroidManifest.xml b/Android/app/src/main/AndroidManifest.xml index e51a195..6e30a45 100644 --- a/Android/app/src/main/AndroidManifest.xml +++ b/Android/app/src/main/AndroidManifest.xml @@ -1,6 +1,5 @@ - + @@ -11,6 +10,7 @@ android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" + android:intentMatchingFlags="enforceIntentFilter" android:theme="@style/AppTheme">