Commit 662c711a authored by Gavin An's avatar Gavin An

액션바 제거

parent fc96d019
...@@ -4,10 +4,10 @@ apply plugin: 'kotlin-kapt' ...@@ -4,10 +4,10 @@ apply plugin: 'kotlin-kapt'
android { android {
defaultConfig { defaultConfig {
buildToolsVersion = '34.0.0' buildToolsVersion = '35.0.0'
minSdkVersion 21 minSdkVersion 21
compileSdk 34 compileSdk 35
targetSdkVersion 34 targetSdkVersion 35
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
...@@ -19,7 +19,7 @@ android { ...@@ -19,7 +19,7 @@ android {
sourceCompatibility JavaVersion.VERSION_18 sourceCompatibility JavaVersion.VERSION_18
targetCompatibility JavaVersion.VERSION_18 targetCompatibility JavaVersion.VERSION_18
} }
kotlinOptions { jvmTarget = '17' } kotlinOptions { jvmTarget = '18' }
buildTypes { buildTypes {
release { release {
......
<resources> <resources>
<!-- Base application theme. --> <!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. --> <!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item> <item name="colorAccent">@color/colorAccent</item>
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style> </style>
</resources> </resources>
\ No newline at end of file
...@@ -5,7 +5,7 @@ buildscript { ...@@ -5,7 +5,7 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:8.2.2' classpath 'com.android.tools.build:gradle:8.8.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22' classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22'
} }
} }
......
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
echo " # # # 기기 내 장치를 언인스톨 합니다 # # #"
./gradlew :testModuleOne:uninstallDebug
./gradlew :testModuleTwo:uninstallDebug
# apk 생성 및 연결된 단말기에 설치
echo " # # # apk 파일을 생성 및 휴대폰에 설치 합니다. # # # "
./gradlew :testModuleOne:installDebug
./gradlew :testModuleTwo:installDebug
\ No newline at end of file
...@@ -8,10 +8,10 @@ android { ...@@ -8,10 +8,10 @@ android {
defaultConfig { defaultConfig {
applicationId "com.example.testModuleOne" applicationId "com.example.testModuleOne"
buildToolsVersion = '34.0.0' buildToolsVersion = '35.0.0'
minSdkVersion 21 minSdkVersion 21
compileSdk 34 compileSdk 35
targetSdkVersion 34 targetSdkVersion 35
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
...@@ -28,10 +28,10 @@ android { ...@@ -28,10 +28,10 @@ android {
} }
} }
compileOptions { compileOptions {
sourceCompatibility JavaVersion.VERSION_17 sourceCompatibility JavaVersion.VERSION_18
targetCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_18
} }
kotlinOptions { jvmTarget = '17' } kotlinOptions { jvmTarget = '18' }
namespace 'com.example.testModuleOne' namespace 'com.example.testModuleOne'
lint { lint {
abortOnError false abortOnError false
...@@ -41,11 +41,11 @@ android { ...@@ -41,11 +41,11 @@ android {
dependencies { dependencies {
implementation project(':app') implementation project(':app')
implementation 'androidx.core:core-ktx:1.12.0' implementation 'androidx.core:core-ktx:1.15.0'
implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.11.0' implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
testImplementation 'junit:junit:4.13.2' testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
} }
\ No newline at end of file
...@@ -7,10 +7,10 @@ plugins { ...@@ -7,10 +7,10 @@ plugins {
android { android {
defaultConfig { defaultConfig {
applicationId "com.example.testModuleTwo" applicationId "com.example.testModuleTwo"
buildToolsVersion = '34.0.0' buildToolsVersion = '35.0.0'
minSdkVersion 21 minSdkVersion 21
compileSdk 34 compileSdk 35
targetSdkVersion 34 targetSdkVersion 35
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
...@@ -28,20 +28,20 @@ android { ...@@ -28,20 +28,20 @@ android {
} }
} }
compileOptions { compileOptions {
sourceCompatibility JavaVersion.VERSION_17 sourceCompatibility JavaVersion.VERSION_18
targetCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_18
} }
kotlinOptions { jvmTarget = '17' } kotlinOptions { jvmTarget = '18' }
namespace 'com.example.testModuleTwo' namespace 'com.example.testModuleTwo'
} }
dependencies { dependencies {
implementation project(':app') implementation project(':app')
implementation 'androidx.core:core-ktx:1.12.0' implementation 'androidx.core:core-ktx:1.15.0'
implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.11.0' implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
testImplementation 'junit:junit:4.13.2' testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment