Skip to content

Commit

Permalink
Application id updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrvansuita committed Nov 21, 2016
1 parent 40d46fc commit 60923bd
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This class lets you apply a fast Gaussian Blur on any images. A larger image wil
#### Step 2. Add the dependency

dependencies {
compile 'com.github.jrvansuita:GaussianBlur:v1.0.1'
compile 'com.github.jrvansuita:GaussianBlur:v1.0.2'
}

# Samples
Expand Down
5 changes: 3 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
defaultConfig {
applicationId "com.vansuita.gaussianblur"
applicationId "com.vansuita.gaussianblur.sample"
minSdkVersion 9
targetSdkVersion 25
versionCode 1
Expand All @@ -18,5 +18,6 @@ android {

dependencies {
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.github.jrvansuita:GaussianBlur:v1.0.1'
// compile 'com.github.jrvansuita:GaussianBlur:v1.0.1'
compile project(':library')
}
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="com.vansuita.gaussianblur">
package="com.vansuita.gaussianblur.sample">

<application
android:allowBackup="true"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package com.vansuita.gaussianblur;
package com.vansuita.gaussianblur.sample;

import android.graphics.Bitmap;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.ImageView;

import com.vansuita.library.GaussianBlur;
import com.vansuita.gaussianblur.GaussianBlur;


public class MainActivity extends AppCompatActivity {

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

<application android:allowBackup="true" android:label="@string/app_name"
android:supportsRtl="true">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.vansuita.library;
package com.vansuita.gaussianblur;

import android.content.Context;
import android.graphics.Bitmap;
Expand Down

0 comments on commit 60923bd

Please sign in to comment.