Skip to content

Commit

Permalink
feat: package name change
Browse files Browse the repository at this point in the history
  • Loading branch information
JiSeokYeom committed Jun 11, 2023
1 parent fbcefff commit 04f34b9
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 21 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ plugins {
}

android {
namespace 'com.healnessbook.compose_circularprogressindicator_background'
namespace 'com.jiseokyeom.compose_circularprogressindicator_background'
compileSdk 33

defaultConfig {
applicationId "com.healnessbook.compose_circularprogressindicator_background"
applicationId "com.jiseokyeom.compose_circularprogressindicator_background"
minSdk 24
targetSdk 33
versionCode 1
Expand Down Expand Up @@ -47,7 +47,7 @@ android {
}

dependencies {
implementation project(":composeCircularProgressLib")
implementation 'com.github.JiSeokYeom:Compose_CircularProgressIndicator_Background:0.0.2'
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
implementation 'androidx.activity:activity-compose:1.4.0'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.healnessbook.compose_circularprogressindicator_background
package com.jiseokyeom.compose_circularprogressindicator_background

import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
android:theme="@style/Theme.Compose_CircularProgressIndicator_Background"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:name="com.jiseokyeom.compose_circularprogressindicator_background.MainActivity"
android:exported="true"
android:label="@string/app_name"
android:theme="@style/Theme.Compose_CircularProgressIndicator_Background">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,15 @@
package com.healnessbook.compose_circularprogressindicator_background
package com.jiseokyeom.compose_circularprogressindicator_background

import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.size
import androidx.compose.material.MaterialTheme
import androidx.compose.material.Surface
import androidx.compose.material.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.healnessbook.compose_circularprogressindicator_background.ui.theme.Compose_CircularProgressIndicator_BackgroundTheme
import com.healnessbook.composecircularprogresslib.CustomCircularProgressIndicatorWithBackground
import com.jiseokyeom.compose_circularprogressindicator_background.ui.theme.Compose_CircularProgressIndicator_BackgroundTheme

class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.healnessbook.compose_circularprogressindicator_background.ui.theme
package com.jiseokyeom.compose_circularprogressindicator_background.ui.theme

import androidx.compose.ui.graphics.Color

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.healnessbook.compose_circularprogressindicator_background.ui.theme
package com.jiseokyeom.compose_circularprogressindicator_background.ui.theme

import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.Shapes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.healnessbook.compose_circularprogressindicator_background.ui.theme
package com.jiseokyeom.compose_circularprogressindicator_background.ui.theme

import androidx.compose.foundation.isSystemInDarkTheme
import androidx.compose.material.MaterialTheme
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.healnessbook.compose_circularprogressindicator_background.ui.theme
package com.jiseokyeom.compose_circularprogressindicator_background.ui.theme

import androidx.compose.material.Typography
import androidx.compose.ui.text.TextStyle
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.healnessbook.compose_circularprogressindicator_background
package com.jiseokyeom.compose_circularprogressindicator_background

import org.junit.Test

Expand Down
2 changes: 1 addition & 1 deletion composeCircularProgressLib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

android {
namespace 'com.healnessbook.composecircularprogresslib'
namespace 'com.jiseokyeom.composecircularprogresslib'
compileSdk 33

defaultConfig {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.healnessbook.composecircularprogresslib
package com.jiseokyeom.composecircularprogresslib

import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.healnessbook.composecircularprogresslib
package com.jiseokyeom.composecircularprogresslib

import androidx.compose.foundation.Canvas
import androidx.compose.foundation.layout.Box
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.healnessbook.composecircularprogresslib
package com.jiseokyeom.composecircularprogresslib

import org.junit.Test

Expand Down

0 comments on commit 04f34b9

Please sign in to comment.