Skip to content

Commit

Permalink
renamed app module to example
Browse files Browse the repository at this point in the history
  • Loading branch information
jsibbold committed Mar 25, 2016
1 parent 0f22e7d commit df9343a
Show file tree
Hide file tree
Showing 20 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.jsibbold.zoomage.demo"
<manifest package="com.jsibbold.zoomage.example"
xmlns:android="http://schemas.android.com/apk/res/android">

<application
Expand All @@ -8,7 +8,7 @@
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="com.jsibbold.zoomage.demo.MainActivity">
<activity android:name="com.jsibbold.zoomage.example.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.jsibbold.zoomage.demo;
package com.jsibbold.zoomage.example;

import android.app.AlertDialog;
import android.content.DialogInterface;
Expand All @@ -31,7 +31,7 @@ public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(com.jsibbold.zoomage.demo.R.layout.activity_main);
setContentView(com.jsibbold.zoomage.example.R.layout.activity_main);
demoView = (ZoomageView)findViewById(R.id.demoView);
}

Expand Down
Expand Up @@ -23,7 +23,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="2dp"
tools:context="com.jsibbold.zoomage.demo.MainActivity">
tools:context="com.jsibbold.zoomage.example.MainActivity">

<com.jsibbold.zoomage.ZoomageView
android:id="@+id/demoView"
Expand Down
File renamed without changes.
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
@@ -1 +1 @@
include ':app', ':zoomage'
include ':example', ':zoomage'

0 comments on commit df9343a

Please sign in to comment.