Skip to content

Commit

Permalink
Update Package name
Browse files Browse the repository at this point in the history
Signed-off-by: Sanju S <[email protected]>
  • Loading branch information
Spikeysanju committed Feb 27, 2021
1 parent 8403404 commit a1bee93
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.androiddevchallenge
package dev.spikeysanju.wiggles

import androidx.compose.ui.test.junit4.createAndroidComposeRule
import androidx.test.ext.junit.runners.AndroidJUnit4
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.androiddevchallenge">
package="dev.spikeysanju.wiggles">

<application
android:allowBackup="true"
Expand All @@ -20,7 +20,7 @@
android:supportsRtl="true"
android:theme="@style/Theme.AndroidDevChallenge">
<activity
android:name="com.example.androiddevchallenge.MainActivity"
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/Theme.AndroidDevChallenge.NoActionBar">
<intent-filter>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.androiddevchallenge
package dev.spikeysanju.wiggles

import android.os.Bundle
import androidx.activity.compose.setContent
Expand All @@ -23,7 +23,7 @@ import androidx.compose.material.Surface
import androidx.compose.material.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.tooling.preview.Preview
import com.example.androiddevchallenge.ui.theme.MyTheme
import dev.spikeysanju.wiggles.ui.theme.MyTheme

class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.androiddevchallenge.ui.theme
package dev.spikeysanju.wiggles.ui.theme

import androidx.compose.ui.graphics.Color

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.androiddevchallenge.ui.theme
package dev.spikeysanju.wiggles.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
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.androiddevchallenge.ui.theme
package dev.spikeysanju.wiggles.ui.theme

import androidx.compose.foundation.isSystemInDarkTheme
import androidx.compose.material.MaterialTheme
Expand All @@ -32,14 +32,14 @@ private val LightColorPalette = lightColors(
primaryVariant = purple700,
secondary = teal200

/* Other default colors to override
background = Color.White,
surface = Color.White,
onPrimary = Color.White,
onSecondary = Color.Black,
onBackground = Color.Black,
onSurface = Color.Black,
*/
/* Other default colors to override
background = Color.White,
surface = Color.White,
onPrimary = Color.White,
onSecondary = Color.Black,
onBackground = Color.Black,
onSurface = Color.Black,
*/
)

@Composable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.androiddevchallenge.ui.theme
package dev.spikeysanju.wiggles.ui.theme

import androidx.compose.material.Typography
import androidx.compose.ui.text.TextStyle
Expand All @@ -28,16 +28,16 @@ val typography = Typography(
fontWeight = FontWeight.Normal,
fontSize = 16.sp
)
/* Other default text styles to override
button = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.W500,
fontSize = 14.sp
),
caption = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
fontSize = 12.sp
)
*/
/* Other default text styles to override
button = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.W500,
fontSize = 14.sp
),
caption = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
fontSize = 12.sp
)
*/
)
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.androiddevchallenge
package dev.spikeysanju.wiggles

/**
* Example local unit test, which will execute on the development machine (host).
Expand Down

0 comments on commit a1bee93

Please sign in to comment.