Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
delacrixmorgan committed Jun 10, 2019
2 parents f46afea + 12d83f6 commit fe8f3f3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ android {
applicationId "com.delacrixmorgan.kingscup"
minSdkVersion 19
targetSdkVersion rootProject.ext.compileSdkVersion
versionCode 25
versionName "2.4.0"
multiDexEnabled true
versionCode 26
versionName "2.4.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down Expand Up @@ -52,6 +53,7 @@ dependencies {
implementation "androidx.core:core-ktx:$androidx_ktx_core_version"
implementation "androidx.fragment:fragment-ktx:$androidx_ktx_fragment_version"

implementation "androidx.multidex:multidex:$androidx_multidex_version"
implementation "androidx.appcompat:appcompat:$androidx_appcompat_version"
implementation "com.google.android.material:material:$material_components_version"
implementation "androidx.recyclerview:recyclerview:$androidx_recyclerview_version"
Expand Down
1 change: 1 addition & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<uses-permission android:name="android.permission.VIBRATE" />

<application
android:name="androidx.multidex.MultiDexApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="${appLabel}"
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/navigation/nav_graph.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
tools:layout="@layout/fragment_launch">
<action
android:id="@+id/action_launchFragment_to_menuFragment"
app:popUpTo="@+id/launchFragment"
app:popUpToInclusive="true"
app:destination="@id/navigationMenuFragment" />
<action
android:id="@+id/action_launchFragment_to_menuLanguageFragment"
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ buildscript {
androidx_ktx_core_version = '1.0.2'
androidx_ktx_fragment_version = '1.0.0'

androidx_multidex_version = '2.0.1'
androidx_navigation_version = '1.0.0'
androidx_recyclerview_version = '1.0.0'
androidx_appcompat_version = '1.1.0-alpha05'
Expand Down

0 comments on commit fe8f3f3

Please sign in to comment.