Skip to content

Commit

Permalink
Merge pull request #190 from burhanrashid52/PE-150
Browse files Browse the repository at this point in the history
Fdroid Version Upgrade
  • Loading branch information
burhanrashid52 authored Oct 5, 2019
2 parents 238042b + 65d4cc5 commit 024a27d
Show file tree
Hide file tree
Showing 20 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.burhanrashid52.imageeditor"
applicationId "com.burhanrashid52.photoeditor"
minSdkVersion 14
targetSdkVersion 28
versionCode 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.burhanrashid52.imageeditor;
package com.burhanrashid52.photoeditor;

import android.support.test.filters.LargeTest;
import android.support.test.rule.ActivityTestRule;
Expand Down
10 changes: 6 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.burhanrashid52.imageeditor">
xmlns:tools="http://schemas.android.com/tools"
package="com.burhanrashid52.photoeditor">

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />

<application
android:name=".PhotoApp"
android:name="com.burhanrashid52.photoeditor.PhotoApp"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<activity
android:name=".EditImageActivity"
android:name="com.burhanrashid52.photoeditor.EditImageActivity"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.burhanrashid52.imageeditor;
package com.burhanrashid52.photoeditor;

import android.content.Context;
import android.graphics.Color;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.burhanrashid52.imageeditor;
package com.burhanrashid52.photoeditor;

import android.Manifest;
import android.annotation.SuppressLint;
Expand All @@ -24,11 +24,11 @@
import android.widget.ImageView;
import android.widget.TextView;

import com.burhanrashid52.imageeditor.base.BaseActivity;
import com.burhanrashid52.imageeditor.filters.FilterListener;
import com.burhanrashid52.imageeditor.filters.FilterViewAdapter;
import com.burhanrashid52.imageeditor.tools.EditingToolsAdapter;
import com.burhanrashid52.imageeditor.tools.ToolType;
import com.burhanrashid52.photoeditor.base.BaseActivity;
import com.burhanrashid52.photoeditor.filters.FilterListener;
import com.burhanrashid52.photoeditor.filters.FilterViewAdapter;
import com.burhanrashid52.photoeditor.tools.EditingToolsAdapter;
import com.burhanrashid52.photoeditor.tools.ToolType;

import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.burhanrashid52.imageeditor;
package com.burhanrashid52.photoeditor;

import android.annotation.SuppressLint;
import android.app.Dialog;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.burhanrashid52.imageeditor;
package com.burhanrashid52.photoeditor;

import android.app.Application;
import android.content.Context;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.burhanrashid52.imageeditor;
package com.burhanrashid52.photoeditor;

import android.os.Bundle;
import android.support.annotation.NonNull;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package com.burhanrashid52.imageeditor;
package com.burhanrashid52.photoeditor;

import android.annotation.SuppressLint;
import android.app.Dialog;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.drawable.ColorDrawable;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.burhanrashid52.imageeditor;
package com.burhanrashid52.photoeditor;

import android.app.Dialog;
import android.content.Context;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.burhanrashid52.imageeditor.base;
package com.burhanrashid52.photoeditor.base;

import android.app.ProgressDialog;
import android.content.pm.PackageManager;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.burhanrashid52.imageeditor.base;
package com.burhanrashid52.photoeditor.base;

import android.os.Bundle;
import android.support.annotation.NonNull;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.burhanrashid52.imageeditor.filters;
package com.burhanrashid52.photoeditor.filters;

import ja.burhanrashid52.photoeditor.PhotoFilter;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.burhanrashid52.imageeditor.filters;
package com.burhanrashid52.photoeditor.filters;

import android.content.Context;
import android.content.res.AssetManager;
Expand All @@ -13,7 +13,7 @@
import android.widget.ImageView;
import android.widget.TextView;

import com.burhanrashid52.imageeditor.R;
import com.burhanrashid52.photoeditor.R;

import java.io.IOException;
import java.io.InputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
package com.burhanrashid52.imageeditor.tools;
package com.burhanrashid52.photoeditor.tools;

import android.support.annotation.NonNull;
import android.support.v4.util.Pair;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;

import com.burhanrashid52.imageeditor.R;
import com.burhanrashid52.photoeditor.R;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.burhanrashid52.imageeditor.tools;
package com.burhanrashid52.photoeditor.tools;

/**
* @author <a href="https://github.com/burhanrashid52">Burhanuddin Rashid</a>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.burhanrashid52.imageeditor;
package com.burhanrashid52.photoeditor;

import org.junit.Test;

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'com.android.tools.build:gradle:3.5.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath "com.github.dcendents:android-maven-gradle-plugin:2.0"
// classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.2'
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon May 07 17:09:29 IST 2018
#Sat Oct 05 08:58:53 IST 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
2 changes: 1 addition & 1 deletion photoeditor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ android {
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.0"
versionName "0.4.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}
Expand Down

0 comments on commit 024a27d

Please sign in to comment.