Skip to content

Commit

Permalink
follow 500px package naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
Jun Luo committed Mar 16, 2015
1 parent 75d395e commit d8c7ca6
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fivehundredpx.blurringviewsample;
package com.fivehundredpx.blurdemo;

import android.app.Application;
import android.test.ApplicationTestCase;
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.fivehundredpx.blurringviewsample" >
package="com.fivehundredpx.blurdemo" >

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:name="com.fivehundredpx.blurdemo.MainActivity"
android:label="@string/app_name" >
<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 com.fivehundredpx.blurringviewsample;
package com.fivehundredpx.blurdemo;

import android.animation.ValueAnimator;
import android.support.v7.app.ActionBarActivity;
Expand All @@ -8,7 +8,7 @@
import android.view.View;
import android.widget.ImageView;

import com.fivehundredpx.blur.BlurringView;
import com.fivehundredpx.android.blur.BlurringView;

import java.util.Random;

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 @@ -101,7 +101,7 @@
</RelativeLayout>
</FrameLayout>

<com.fivehundredpx.blur.BlurringView
<com.fivehundredpx.android.blur.BlurringView
android:id="@+id/blurring_view"
android:layout_width="360dp"
android:layout_height="360dp"
Expand Down
2 changes: 1 addition & 1 deletion blurringview/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest
package="com.fivehundredpx.blur"
package="com.fivehundredpx.android.blur"
xmlns:android="http://schemas.android.com/apk/res/android">

<application
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fivehundredpx.blur;
package com.fivehundredpx.android.blur;

/**
* Created by jun on 15-03-12.
Expand Down

0 comments on commit d8c7ca6

Please sign in to comment.