Skip to content

Commit

Permalink
Added rules 13/10/2023
Browse files Browse the repository at this point in the history
  • Loading branch information
ivancea committed Oct 13, 2023
1 parent ffae10b commit 8f8c41a
Show file tree
Hide file tree
Showing 9 changed files with 8,692 additions and 24 deletions.
22 changes: 22 additions & 0 deletions .idea/androidTestResultsUserPreferences.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 45 additions & 12 deletions .idea/deploymentTargetDropDown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/migrations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
minSdkVersion 26
compileSdk 34
targetSdkVersion 34
versionCode 68
versionCode 69
versionName "2.8.5"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunnerArguments["runnerBuilder"] = "de.mannodermaus.junit5.AndroidJUnit5Builder"
Expand Down Expand Up @@ -66,8 +66,8 @@ dependencies {
implementation "androidx.compose.ui:ui:$compose_version"
implementation "androidx.compose.material:material:$compose_version"
implementation "androidx.compose.material:material-icons-extended:$compose_version"
implementation 'androidx.core:core-ktx:1.10.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1'
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2'
testImplementation "org.junit.jupiter:junit-jupiter:$jupiter_version"

implementation "com.google.dagger:hilt-android:$dagger_version"
Expand All @@ -77,13 +77,13 @@ dependencies {
implementation "androidx.hilt:hilt-navigation-compose:1.0.0"

implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
implementation 'androidx.activity:activity-compose:1.7.2'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
implementation 'androidx.activity:activity-compose:1.8.0'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version"
implementation 'com.google.android.gms:play-services-ads:22.3.0'
implementation 'com.google.ads.mediation:facebook:6.15.0.0'
implementation 'com.google.android.gms:play-services-ads:22.4.0'
implementation 'com.google.ads.mediation:facebook:6.16.0.0'


// Testing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,12 @@ public RulesService(@ApplicationContext Context context) {
new URI("https://media.wizards.com/2023/downloads/MagicCompRulesWOE%2020230901.txt"),
LocalDate.of(2023, 9, 1),
StandardCharsets.UTF_8
),

new RulesSource(
new URI("https://media.wizards.com/2023/downloads/MagicCompRules%2020231013.txt"),
LocalDate.of(2023, 10, 13),
StandardCharsets.UTF_8
)
);
} catch (URISyntaxException e) {
Expand Down
Loading

0 comments on commit 8f8c41a

Please sign in to comment.