Skip to content

Commit

Permalink
Jumbling of dependencies, no progress
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeSteam committed Aug 27, 2023
1 parent 646e8f1 commit 59eb12f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
3 changes: 2 additions & 1 deletion BaseGameUtils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ buildscript {
maven {
url 'https://maven.google.com'
}
google()
}

dependencies {
Expand All @@ -21,7 +22,7 @@ dependencies {
}

android {
compileSdkVersion 24
compileSdkVersion 28
buildToolsVersion compilerVersion
}

5 changes: 3 additions & 2 deletions Blacksmith/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 24
compileSdkVersion 28
buildToolsVersion '25.0.0'

defaultConfig {
Expand All @@ -28,6 +28,7 @@ repositories {
maven {
url 'https://maven.google.com'
}
google()
}

dependencies {
Expand All @@ -36,7 +37,7 @@ dependencies {
implementation "com.android.support:appcompat-v7:$supportLibraryVersion"
implementation "com.android.support:design:$supportLibraryVersion"
implementation "com.android.support:percent:$supportLibraryVersion"
implementation "com.google.android.gms:play-services-ads:$playLibraryVersion"
implementation "com.google.android.gms:play-services-ads:20.0.0"
implementation "com.google.android.gms:play-services-gcm:$playLibraryVersion"
implementation 'com.github.satyan:sugar:1.5'
implementation 'com.google.code.gson:gson:2.7'
Expand Down
5 changes: 3 additions & 2 deletions Blacksmith/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@
<!--suppress AndroidDomInspection -->
<activity
android:name=".main.SplashScreenActivity"
android:theme="@style/AppTheme.Splash">
android:theme="@style/AppTheme.Splash"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down Expand Up @@ -153,7 +154,7 @@
android:configChanges="keyboardHidden|orientation|screenSize"
android:theme="@style/AppTheme.PopupOverlay" />

<receiver android:name=".helper.NotificationHelper">
<receiver android:name=".helper.NotificationHelper" android:exported="true">
<intent-filter>
<action android:name="android.media.action.DISPLAY_NOTIFICATION" />

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@

import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.drive.Drive;
import com.google.android.gms.games.Games;
import com.google.android.gms.games.quest.Quest;
import com.google.android.gms.games.quest.QuestUpdateListener;
import com.orm.query.Condition;
import com.orm.query.Select;
import com.tapjoy.TJPlacement;
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ buildscript {
ext {
apiVersion = 33
compilerVersion = '25.0.1'
supportLibraryVersion = '23.0.1' // Updating this breaks alert sizes, tutorial skipping, and many other things. Don't.
playLibraryVersion = '15.0.0'
supportLibraryVersion = '28.0.0' // Updating this breaks alert sizes, tutorial skipping, and many other things. Don't.
playLibraryVersion = '12.0.1'
}

allprojects {
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# org.gradle.parallel=true
android.useAndroidX=true

0 comments on commit 59eb12f

Please sign in to comment.