Skip to content

Commit

Permalink
Renamed a lot of package names
Browse files Browse the repository at this point in the history
  • Loading branch information
Droppers committed Feb 29, 2020
1 parent decc52f commit 09449c1
Show file tree
Hide file tree
Showing 45 changed files with 11 additions and 9 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package nl.joery.animatedbottombar
package nl.joery.animatedbottombar.demo

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
Expand Up @@ -10,7 +10,7 @@
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:name=".demo.MainActivity"
android:label="@string/title_activity_main"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package nl.joery.animatedbottombar
package nl.joery.animatedbottombar.demo

import android.graphics.Color
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import androidx.core.content.ContextCompat

import kotlinx.android.synthetic.main.activity_main.*
import nl.joery.animatedbottombar.R
import nl.joery.library.animatedbottombar.AnimatedBottomBar
import nl.joery.library.animatedbottombar.BottomBarStyle

Expand All @@ -18,7 +18,9 @@ class MainActivity : AppCompatActivity() {
select.setOnClickListener {
bottomBar.addTab(
AnimatedBottomBar.Tab(
ContextCompat.getDrawable(applicationContext, R.drawable.alarm),
ContextCompat.getDrawable(applicationContext,
R.drawable.alarm
),
"Added Tab"
)
)
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
tools:context=".demo.MainActivity">

<nl.joery.library.animatedbottombar.AnimatedBottomBar
android:id="@+id/bottomBar"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package nl.joery.animatedbottombar
package nl.joery.animatedbottombar.demo

import org.junit.Test

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ class ExampleInstrumentedTest {
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("nl.joery.library.animatedbottombar.test", appContext.packageName)
assertEquals("nl.joery.animatedbottombar.test", appContext.packageName)
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include ':library'
include ':app'
include ':demo'
rootProject.name = "AnimatedBottomBar"

0 comments on commit 09449c1

Please sign in to comment.