This commit is contained in:
Zhengyu Peng
2022-02-10 21:26:34 -05:00
parent 901c49017b
commit 3fa3669f34
6 changed files with 50 additions and 14 deletions

View File

@ -8,7 +8,7 @@ android {
defaultConfig {
applicationId "com.rookiedev.hexapod"
minSdk 21
minSdk 29
targetSdk 31
versionCode 1
versionName "1.0"
@ -34,10 +34,10 @@ android {
dependencies {
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
testImplementation 'junit:junit:4.+'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}