Skip to content

Commit

Permalink
export compose activity_version & appcompat_version & navigation_vers…
Browse files Browse the repository at this point in the history
…ion to extra section
  • Loading branch information
CMingTseng committed Jun 30, 2021
1 parent a0d84bf commit 7affe28
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
12 changes: 7 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,17 @@ android {

dependencies {
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.appcompat:appcompat:1.3.0-beta01'
implementation 'com.google.android.material:material:1.3.0'
implementation "androidx.activity:activity-compose:1.3.0-alpha04"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.0'

implementation "androidx.appcompat:appcompat:$compose_appcompat_version"
implementation "androidx.activity:activity-compose:$compose_activity_version"
implementation "androidx.compose.ui:ui:$compose_version"
implementation "androidx.compose.ui:ui-tooling:$compose_version"
implementation "androidx.compose.material:material:$compose_version"
implementation "androidx.compose.material:material-icons-extended:$compose_version"
implementation "androidx.compose.ui:ui-tooling:$compose_version"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.0'
implementation "androidx.navigation:navigation-compose:1.0.0-alpha09"
implementation "androidx.navigation:navigation-compose:$compose_navigation_version"

implementation "dev.chrisbanes.accompanist:accompanist-insets:0.6.2"
testImplementation 'junit:junit:4.13.2'

Expand Down
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ buildscript {
ext {
android_gradle_plugin_version = '7.0.0-alpha09'
kotlin_version = '1.5.10'
compose_version = '1.0.0-beta08'//1.0.0-beta09 some low level android device get crash !! libart.so or libart.jar lost
coroutines_version = '1.4.3'

compose_version = '1.0.0-beta08'//1.0.0-beta09 some low level android device get crash !! libart.so or libart.jar lost
compose_activity_version = '1.3.0-alpha04'
compose_appcompat_version = '1.3.0-beta01'
compose_navigation_version = '1.0.0-alpha09'
}

repositories {
Expand Down

0 comments on commit 7affe28

Please sign in to comment.