Skip to content

Commit

Permalink
Package name changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubkinst committed Aug 7, 2015
1 parent dad9361 commit 72e0eef
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 41 deletions.
1 change: 0 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ android {
buildToolsVersion "22.0.1"

defaultConfig {
applicationId "cz.kinst.jakub.statefulviewsample"
minSdkVersion 16
targetSdkVersion 22
versionCode 1
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion 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="cz.kinst.jakub.statefulviewsample">
package="com.strv.sample.statefulview">

<application
android:allowBackup="true"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package cz.kinst.jakub.statefulviewsample;
package com.strv.sample.statefulview;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;

import com.strv.StatefulView;
import com.strv.view.StatefulView;


public class MainActivity extends AppCompatActivity
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
android:text="EMPTY"/>
</LinearLayout>

<com.strv.StatefulView
<com.strv.view.StatefulView
android:id="@+id/stateful"
android:layout_width="match_parent"
android:layout_height="0dp"
Expand All @@ -60,5 +60,5 @@
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Content"/>
</com.strv.StatefulView>
</com.strv.view.StatefulView>
</LinearLayout>

This file was deleted.

2 changes: 1 addition & 1 deletion library/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.strv">
package="com.strv.view">

<application
android:allowBackup="true">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.strv;
package com.strv.view;

import android.content.Context;
import android.content.res.TypedArray;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.strv;
package com.strv.view;


public enum ViewState
Expand Down

0 comments on commit 72e0eef

Please sign in to comment.