Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
NotiTest
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages
Packages
Container Registry
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Gavin An
NotiTest
Commits
662c711a
Commit
662c711a
authored
Mar 26, 2025
by
Gavin An
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
액션바 제거
parent
fc96d019
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
41 additions
and
31 deletions
+41
-31
app/build.gradle
app/build.gradle
+4
-4
app/src/main/res/values/styles.xml
app/src/main/res/values/styles.xml
+3
-1
build.gradle
build.gradle
+1
-1
gradle/wrapper/gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+1
-1
release.sh
release.sh
+8
-0
testModuleOne/build.gradle
testModuleOne/build.gradle
+12
-12
testModuleTwo/build.gradle
testModuleTwo/build.gradle
+12
-12
No files found.
app/build.gradle
View file @
662c711a
...
@@ -4,10 +4,10 @@ apply plugin: 'kotlin-kapt'
...
@@ -4,10 +4,10 @@ apply plugin: 'kotlin-kapt'
android
{
android
{
defaultConfig
{
defaultConfig
{
buildToolsVersion
=
'3
4
.0.0'
buildToolsVersion
=
'3
5
.0.0'
minSdkVersion
21
minSdkVersion
21
compileSdk
3
4
compileSdk
3
5
targetSdkVersion
3
4
targetSdkVersion
3
5
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
=
'1
7
'
}
kotlinOptions
{
jvmTarget
=
'1
8
'
}
buildTypes
{
buildTypes
{
release
{
release
{
...
...
app/src/main/res/values/styles.xml
View file @
662c711a
<resources>
<resources>
<!-- Base application theme. -->
<!-- Base application theme. -->
<style
name=
"AppTheme"
parent=
"Theme.AppCompat.Light.
Dark
ActionBar"
>
<style
name=
"AppTheme"
parent=
"Theme.AppCompat.Light.
No
ActionBar"
>
<!-- 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
build.gradle
View file @
662c711a
...
@@ -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'
}
}
}
}
...
...
gradle/wrapper/gradle-wrapper.properties
View file @
662c711a
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
release.sh
0 → 100755
View file @
662c711a
echo
" # # # 기기 내 장치를 언인스톨 합니다 # # #"
./gradlew :testModuleOne:uninstallDebug
./gradlew :testModuleTwo:uninstallDebug
# apk 생성 및 연결된 단말기에 설치
echo
" # # # apk 파일을 생성 및 휴대폰에 설치 합니다. # # # "
./gradlew :testModuleOne:installDebug
./gradlew :testModuleTwo:installDebug
\ No newline at end of file
testModuleOne/build.gradle
View file @
662c711a
...
@@ -8,10 +8,10 @@ android {
...
@@ -8,10 +8,10 @@ android {
defaultConfig
{
defaultConfig
{
applicationId
"com.example.testModuleOne"
applicationId
"com.example.testModuleOne"
buildToolsVersion
=
'3
4
.0.0'
buildToolsVersion
=
'3
5
.0.0'
minSdkVersion
21
minSdkVersion
21
compileSdk
3
4
compileSdk
3
5
targetSdkVersion
3
4
targetSdkVersion
3
5
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_1
7
sourceCompatibility
JavaVersion
.
VERSION_1
8
targetCompatibility
JavaVersion
.
VERSION_1
7
targetCompatibility
JavaVersion
.
VERSION_1
8
}
}
kotlinOptions
{
jvmTarget
=
'1
7
'
}
kotlinOptions
{
jvmTarget
=
'1
8
'
}
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.1
2
.0'
implementation
'androidx.core:core-ktx:1.1
5
.0'
implementation
'androidx.appcompat:appcompat:1.
6.1
'
implementation
'androidx.appcompat:appcompat:1.
7.0
'
implementation
'com.google.android.material:material:1.1
1
.0'
implementation
'com.google.android.material:material:1.1
2
.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
testModuleTwo/build.gradle
View file @
662c711a
...
@@ -7,10 +7,10 @@ plugins {
...
@@ -7,10 +7,10 @@ plugins {
android
{
android
{
defaultConfig
{
defaultConfig
{
applicationId
"com.example.testModuleTwo"
applicationId
"com.example.testModuleTwo"
buildToolsVersion
=
'3
4
.0.0'
buildToolsVersion
=
'3
5
.0.0'
minSdkVersion
21
minSdkVersion
21
compileSdk
3
4
compileSdk
3
5
targetSdkVersion
3
4
targetSdkVersion
3
5
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_1
7
sourceCompatibility
JavaVersion
.
VERSION_1
8
targetCompatibility
JavaVersion
.
VERSION_1
7
targetCompatibility
JavaVersion
.
VERSION_1
8
}
}
kotlinOptions
{
jvmTarget
=
'1
7
'
}
kotlinOptions
{
jvmTarget
=
'1
8
'
}
namespace
'com.example.testModuleTwo'
namespace
'com.example.testModuleTwo'
}
}
dependencies
{
dependencies
{
implementation
project
(
':app'
)
implementation
project
(
':app'
)
implementation
'androidx.core:core-ktx:1.1
2
.0'
implementation
'androidx.core:core-ktx:1.1
5
.0'
implementation
'androidx.appcompat:appcompat:1.
6.1
'
implementation
'androidx.appcompat:appcompat:1.
7.0
'
implementation
'com.google.android.material:material:1.1
1
.0'
implementation
'com.google.android.material:material:1.1
2
.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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment