Skip to content

Commit

Permalink
fix : rename demo app packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryOkafor committed Dec 18, 2017
1 parent 0372562 commit 7a089b0
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
compileSdkVersion 27
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "me.jerryhanks.stepviewapp"
applicationId "me.jerryhanks.demo"
minSdkVersion 16
targetSdkVersion 27
versionCode 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package me.jerryhanks.stepviewapp
package me.jerryhanks.demo

import android.content.Context
import android.support.test.InstrumentationRegistry
import android.support.test.runner.AndroidJUnit4

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="me.jerryhanks.stepviewapp">
package="me.jerryhanks.demo">

<application
android:allowBackup="true"
Expand All @@ -9,7 +9,7 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<activity android:name="me.jerryhanks.demo.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package me.jerryhanks.stepviewapp
package me.jerryhanks.demo

import android.os.Bundle
import android.support.v7.app.AppCompatActivity
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package me.jerryhanks.stepviewapp
package me.jerryhanks.demo

import me.jerryhanks.timelineview.model.Status
import me.jerryhanks.timelineview.model.TimeLine
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="me.jerryhanks.stepviewapp.MainActivity">
tools:context="me.jerryhanks.demo.MainActivity">

<TextView
android:id="@+id/caption"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package me.jerryhanks.stepviewapp
package me.jerryhanks.demo

import org.junit.Test

Expand Down

0 comments on commit 7a089b0

Please sign in to comment.