Skip to content

Commit 7a089b0

Browse files
committed
fix : rename demo app packages
1 parent 0372562 commit 7a089b0

7 files changed

Lines changed: 8 additions & 9 deletions

File tree

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android {
77
compileSdkVersion 27
88
buildToolsVersion "26.0.2"
99
defaultConfig {
10-
applicationId "me.jerryhanks.stepviewapp"
10+
applicationId "me.jerryhanks.demo"
1111
minSdkVersion 16
1212
targetSdkVersion 27
1313
versionCode 1

app/src/androidTest/java/me/jerryhanks/stepviewapp/ExampleInstrumentedTest.kt renamed to app/src/androidTest/java/me/jerryhanks/demo/ExampleInstrumentedTest.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
package me.jerryhanks.stepviewapp
1+
package me.jerryhanks.demo
22

3-
import android.content.Context
43
import android.support.test.InstrumentationRegistry
54
import android.support.test.runner.AndroidJUnit4
65

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="me.jerryhanks.stepviewapp">
3+
package="me.jerryhanks.demo">
44

55
<application
66
android:allowBackup="true"
@@ -9,7 +9,7 @@
99
android:roundIcon="@mipmap/ic_launcher_round"
1010
android:supportsRtl="true"
1111
android:theme="@style/AppTheme">
12-
<activity android:name=".MainActivity">
12+
<activity android:name="me.jerryhanks.demo.MainActivity">
1313
<intent-filter>
1414
<action android:name="android.intent.action.MAIN" />
1515

app/src/main/java/me/jerryhanks/stepviewapp/MainActivity.kt renamed to app/src/main/java/me/jerryhanks/demo/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package me.jerryhanks.stepviewapp
1+
package me.jerryhanks.demo
22

33
import android.os.Bundle
44
import android.support.v7.app.AppCompatActivity

app/src/main/java/me/jerryhanks/stepviewapp/MyTimeLine.kt renamed to app/src/main/java/me/jerryhanks/demo/MyTimeLine.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package me.jerryhanks.stepviewapp
1+
package me.jerryhanks.demo
22

33
import me.jerryhanks.timelineview.model.Status
44
import me.jerryhanks.timelineview.model.TimeLine

app/src/main/res/layout/activity_main.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:tools="http://schemas.android.com/tools"
55
android:layout_width="match_parent"
66
android:layout_height="match_parent"
7-
tools:context="me.jerryhanks.stepviewapp.MainActivity">
7+
tools:context="me.jerryhanks.demo.MainActivity">
88

99
<TextView
1010
android:id="@+id/caption"

app/src/test/java/me/jerryhanks/stepviewapp/ExampleUnitTest.kt renamed to app/src/test/java/me/jerryhanks/demo/ExampleUnitTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package me.jerryhanks.stepviewapp
1+
package me.jerryhanks.demo
22

33
import org.junit.Test
44

0 commit comments

Comments
 (0)