Skip to content
This repository has been archived by the owner on Jul 24, 2023. It is now read-only.

Rename resource Id #455

Merged
merged 1 commit into from
Nov 2, 2020
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
Rename resource Id
Gradle update
Kotlin plugin version update
Other libs version update
  • Loading branch information
android-dev-lxl committed Oct 30, 2020
commit 8c8c5823e85ccf0a2d81a51303bc522d87e9516f
2 changes: 1 addition & 1 deletion AndroidTrivia/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation "androidx.appcompat:appcompat:$supportlibVersion"
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation "com.google.android.material:material:1.2.1"
implementation "androidx.navigation:navigation-fragment-ktx:$navigationVersion"
Expand Down
4 changes: 2 additions & 2 deletions AndroidTrivia/app/src/main/res/layout/fragment_game_over.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
android:background="@color/gameOverBackground">

<ImageView
android:id="@+id/gameOverFragment"
android:id="@+id/tryAgainImage"
android:layout_width="wrap_content"
android:layout_height="362dp"
android:layout_marginStart="@dimen/horizontal_margin"
Expand Down Expand Up @@ -57,6 +57,6 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/gameOverFragment" />
app:layout_constraintTop_toBottomOf="@+id/tryAgainImage" />
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
6 changes: 3 additions & 3 deletions AndroidTrivia/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.3.72'
kotlin_version = '1.4.10'
archLifecycleVersion = '1.1.1'
gradleVersion = '4.0.1'
gradleVersion = '4.1.0'
supportlibVersion = '1.2.0'
dataBindingCompilerVersion = gradleVersion // Always need to be the same.
navigationVersion = '2.3.0'
navigationVersion = '2.3.1'
}
repositories {
google()
Expand Down
6 changes: 3 additions & 3 deletions AndroidTrivia/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Tue Aug 11 12:55:41 PDT 2020
#Fri Oct 30 16:13:54 PDT 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
android.databinding.enableV2=true
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
2 changes: 1 addition & 1 deletion AndroidTriviaFragment/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation "androidx.appcompat:appcompat:$supportlibVersion"
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation "com.google.android.material:material:1.2.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
android:background="@color/gameOverBackground">

<ImageView
android:id="@+id/gameOverFragment"
android:id="@+id/tryAgainImage"
android:layout_width="wrap_content"
android:layout_height="362dp"
android:layout_marginStart="@dimen/horizontal_margin"
Expand Down Expand Up @@ -57,6 +57,6 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/gameOverFragment" />
app:layout_constraintTop_toBottomOf="@+id/tryAgainImage" />
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
6 changes: 3 additions & 3 deletions AndroidTriviaFragment/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.3.72'
kotlin_version = '1.4.10'
archLifecycleVersion = '1.1.1'
gradleVersion = '4.0.1'
gradleVersion = '4.1.0'
supportlibVersion = '1.2.0'
dataBindingCompilerVersion = gradleVersion // Always need to be the same.
navigationVersion = '2.3.0'
navigationVersion = '2.3.1'
}
repositories {
google()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Tue Aug 11 13:26:30 PDT 2020
#Fri Oct 30 15:56:07 PDT 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
android.databinding.enableV2=true
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
2 changes: 1 addition & 1 deletion AndroidTriviaNavigation/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation "androidx.appcompat:appcompat:$supportlibVersion"
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation "com.google.android.material:material:1.2.1"
implementation"androidx.navigation:navigation-fragment-ktx:$navigationVersion"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
android:background="@color/gameOverBackground">

<ImageView
android:id="@+id/gameOverFragment"
android:id="@+id/tryAgainImage"
android:layout_width="wrap_content"
android:layout_height="362dp"
android:layout_marginStart="@dimen/horizontal_margin"
Expand Down Expand Up @@ -57,6 +57,6 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/gameOverFragment" />
app:layout_constraintTop_toBottomOf="@+id/tryAgainImage" />
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
6 changes: 3 additions & 3 deletions AndroidTriviaNavigation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.3.72'
kotlin_version = '1.4.10'
archLifecycleVersion = '1.1.1'
gradleVersion = '4.0.1'
gradleVersion = '4.1.0'
supportlibVersion = '1.2.0'
dataBindingCompilerVersion = gradleVersion // Always need to be the same.
navigationVersion = '2.3.0'
navigationVersion = '2.3.1'
}
repositories {
google()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Tue Aug 11 13:54:51 PDT 2020
#Fri Oct 30 15:59:52 PDT 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
android.databinding.enableV2=true
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip