-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Code updated to run on SDK 33 and Gradle 7.5
- Loading branch information
1 parent
2f3e360
commit c18d15b
Showing
4 changed files
with
86 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,33 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
|
||
buildscript { | ||
ext.kotlin_version = '1.3.72' | ||
ext { | ||
version_core = "1.10.1" | ||
version_constraint_layout = "2.1.4" | ||
version_gradle = '7.3.1' | ||
version_kotlin = "1.8.0" | ||
version_lifecycle = "2.6.1" | ||
version_navigation = '2.5.3' | ||
version_glide = "4.14.2" | ||
version_moshi = "1.9.3" | ||
version_retrofit = "2.9.0" | ||
version_recyclerview = "1.3.0-rc01" | ||
version_work = "2.8.1" | ||
version_room = "2.5.1" | ||
version_appcompat = "1.6.1" | ||
version_moshi = "1.9.3" | ||
version_glide = "4.14.2" | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
google() | ||
jcenter() | ||
|
||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:4.0.1' | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | ||
classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:1.0.0" | ||
classpath 'com.android.tools.build:gradle:7.3.1' | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0" | ||
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3" | ||
|
||
// NOTE: Do not place your application dependencies here; they belong | ||
// in the individual module build.gradle files | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
jcenter() | ||
|
||
} | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,16 @@ | ||
include ':app' | ||
pluginManagement { | ||
repositories { | ||
gradlePluginPortal() | ||
google() | ||
mavenCentral() | ||
} | ||
} | ||
dependencyResolutionManagement { | ||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
} | ||
rootProject.name='Asteroid Radar' | ||
include ':app' |