8000 Fix classpath to run the App by grine4ka · Pull Request #115 · formatools/forma · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix classpath to run the App #115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion application/buildSrc/src/main/java/Androidx.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ object androidx {
annotation,
"androidx.collection:collection:${versions.androidx.collection}".dep
)
private val collection_ktx = deps(
collection,
"androidx.collection:collection-ktx:${versions.androidx.collection}".dep,
)
private val versionedparcelable = deps(
"androidx.versionedparcelable:versionedparcelable:${versions.androidx.versionedparcelable}".dep,
annotation,
Expand Down Expand Up @@ -262,7 +266,7 @@ object androidx {
private val navigation_common_ktx = deps(
"androidx.navigation:navigation-common-ktx:${versions.androidx.navigation}".dep,
annotation,
collection,
8000 collection_ktx,
core
)

Expand Down
10 changes: 5 additions & 5 deletions application/buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ object versions {
}

object androidx {
const val activity = "1.1.0"
const val activity = "1.2.4"
const val annotation = "1.1.0"
const val arch = "2.1.0"
const val asynclayoutinflater = "1.0.0"
const val appcompat = "1.2.0"
const val cardview = "1.0.0"
const val collection = "1.0.0"
const val collection = "1.2.0"
const val core = "1.3.1"
const val core_common = "2.1.0"
const val coordinatorlayout = "1.1.0"
Expand All @@ -23,16 +23,16 @@ object versions {
const val documentfile = "1.0.1"
const val drawerlayout = "1.1.0"
const val interpolator = "1.0.0"
const val fragment = "1.2.5"
const val fragment = "1.4.1"
const val legacy = "1.0.0"
const val lifecycle = "2.5.1"
const val loader = "1.1.0"
const val localbroadcastmanager = "1.0.0"
const val navigation = "2.4.2"
const val savedstate = "1.0.0"
const val savedstate = "1.1.0"
const val slidingpanelayout = "1.0.0"
const val swiperefreshlayout = "1.0.0"
const val sqlite = "2.0.1"
const val sqlite = "2.2.0"
const val paging = "2.1.2"
const val recyclerview = "1.1.0"
const val room = "2.4.0"
Expand Down
446B
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class SampleApp : SplitCompatApplication(),

override fun onCreate() {
super.onCreate()
AppStartup.init(this)
// AppStartup.init(this)
initTimber()
initRootDependencyInjection()
initRandomNightMode()
Expand Down
0