Skip to content

Commit

Permalink
rename packages
Browse files Browse the repository at this point in the history
  • Loading branch information
vinc3m1 committed Jul 18, 2013
1 parent 9d27680 commit a813488
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions example/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="com.makeramen.rounded.example"
package="com.makeramen.example"
android:versionCode="1"
android:versionName="1.0" >

Expand All @@ -14,7 +14,7 @@
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.makeramen.rounded.example.RoundedActivity"
android:name="com.makeramen.example.RoundedActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down
2 changes: 1 addition & 1 deletion example/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'android'

dependencies {
compile project(':library')
compile project(':roundedimageview')
}

android {
Expand Down
2 changes: 1 addition & 1 deletion example/res/layout/rounded_item.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
android:layout_width="match_parent"
android:layout_height="200dip">

<com.makeramen.rounded.RoundedImageView
<com.makeramen.RoundedImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Copyright (C) 2013 Make Ramen, LLC
*/

package com.makeramen.rounded.example;
package com.makeramen.example;

import android.app.Activity;
import android.content.Context;
Expand All @@ -17,7 +17,7 @@
import android.widget.ListView;
import android.widget.TextView;

import com.makeramen.rounded.RoundedImageView;
import com.makeramen.RoundedImageView;

public class RoundedActivity extends Activity {
@Override
Expand Down
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.makeramen.rounded"
package="com.makeramen"
android:versionCode="1"
android:versionName="1.0.0" >

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 @@ -2,7 +2,7 @@
Copyright (C) 2013 Make Ramen, LLC
*/

package com.makeramen.rounded;
package com.makeramen;

import android.content.res.ColorStateList;
import android.graphics.*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Copyright (C) 2013 Make Ramen, LLC
*/

package com.makeramen.rounded;
package com.makeramen;

import android.content.Context;
import android.content.res.ColorStateList;
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include ':library'
include ':roundedimageview'
include ':example'

0 comments on commit a813488

Please sign in to comment.