Skip to content
This repository has been archived by the owner on Oct 14, 2021. It is now read-only.

Commit

Permalink
Dateien Umbenannt
Browse files Browse the repository at this point in the history
  • Loading branch information
tk2232 committed Sep 7, 2018
1 parent a4fa63b commit b89cacd
Show file tree
Hide file tree
Showing 18 changed files with 23 additions and 23 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
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.example.sebastianesau.camera"
applicationId "com.devtk.tk2232.EasyImagePicker"
minSdkVersion 23
targetSdkVersion 28
versionCode 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.sebastianesau.camera;
package com.devtk.tk2232.EasyImagePicker;

import android.content.Context;
import android.support.test.InstrumentationRegistry;
Expand All @@ -21,6 +21,6 @@ public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();

assertEquals("com.example.sebastianesau.camera", appContext.getPackageName());
assertEquals("com.devtk.tk2232.EasyImagePicker", appContext.getPackageName());
}
}
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.example.sebastianesau.camera">
package="com.devtk.tk2232.EasyImagePicker">

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.sebastianesau.camera.ImagePicker;
package com.devtk.tk2232.EasyImagePicker.ImagePicker;

import android.support.annotation.NonNull;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.sebastianesau.camera.ImagePicker;
package com.devtk.tk2232.EasyImagePicker.ImagePicker;

public abstract class DefaultCallback implements Callbacks {
}
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.example.sebastianesau.camera.ImagePicker;
package com.devtk.tk2232.EasyImagePicker.ImagePicker;

import android.app.Activity;
import android.content.Context;
import android.os.Environment;
import android.support.annotation.NonNull;

import com.example.sebastianesau.camera.R;
import com.devtk.tk2232.EasyImagePicker.R;

public class FileConfiguration {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.sebastianesau.camera.ImagePicker;
package com.devtk.tk2232.EasyImagePicker.ImagePicker;

import android.content.ContentResolver;
import android.content.Context;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.sebastianesau.camera.ImagePicker;
package com.devtk.tk2232.EasyImagePicker.ImagePicker;

public interface ImageLogCallback {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.sebastianesau.camera.ImagePicker;
package com.devtk.tk2232.EasyImagePicker.ImagePicker;

public enum ImageSource {
GALLERY,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.sebastianesau.camera.ImagePicker;
package com.devtk.tk2232.EasyImagePicker.ImagePicker;

import android.app.Activity;
import android.content.ClipData;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.sebastianesau.camera.ImagePicker;
package com.devtk.tk2232.EasyImagePicker.ImagePicker;

import android.os.Environment;
import android.os.StatFs;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.sebastianesau.camera;
package com.devtk.tk2232.EasyImagePicker;

import android.content.Intent;
import android.content.pm.PackageManager;
Expand All @@ -12,10 +12,10 @@
import android.widget.Button;
import android.widget.ImageView;

import com.example.sebastianesau.camera.ImagePicker.Callbacks;
import com.example.sebastianesau.camera.ImagePicker.ImageLogCallback;
import com.example.sebastianesau.camera.ImagePicker.PickImage;
import com.example.sebastianesau.camera.ImagePicker.ImageSource;
import com.devtk.tk2232.EasyImagePicker.ImagePicker.Callbacks;
import com.devtk.tk2232.EasyImagePicker.ImagePicker.ImageLogCallback;
import com.devtk.tk2232.EasyImagePicker.ImagePicker.PickImage;
import com.devtk.tk2232.EasyImagePicker.ImagePicker.ImageSource;

import java.io.File;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.sebastianesau.camera;
package com.devtk.tk2232.EasyImagePicker;

import android.Manifest;
import android.app.Activity;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.sebastianesau.camera;
package com.devtk.tk2232.EasyImagePicker;

import org.junit.Test;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.cameralibrary;
package com.devtk.cameralibrary;

import android.content.Context;
import android.support.test.InstrumentationRegistry;
Expand Down
2 changes: 1 addition & 1 deletion cameralibrary/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.cameralibrary" />
package="com.devtk.cameralibrary" />
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.cameralibrary;
package com.devtk.cameralibrary;

import org.junit.Test;

Expand Down

0 comments on commit b89cacd

Please sign in to comment.