Rename to io.gitjournal.gitjournal

We now own the domain gitjournal.io
This commit is contained in:
Vishesh Handa
2019-01-08 19:22:35 +01:00
parent 18d9601dcd
commit e91c82fd66
12 changed files with 14 additions and 19 deletions

View File

@ -23,7 +23,7 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.journal"
applicationId "io.gitjournal.gitjournal"
minSdkVersion 16
targetSdkVersion 27
versionCode 1

View File

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.journal">
package="io.gitjournal.gitjournal">
<!-- The INTERNET permission is required for development. Specifically,
flutter needs it to communicate with the running application

View File

@ -1,4 +1,4 @@
package com.example.journal;
package io.gitjournal.gitjournal;
import android.util.Log;
@ -35,7 +35,6 @@ public class CustomSshSessionFactory extends JschConfigSessionFactory {
name.put(new Integer(FATAL), "FATAL: ");
}
public boolean isEnabled(int level) {
return true;
}

View File

@ -1,4 +1,4 @@
package com.example.journal;
package io.gitjournal.gitjournal;
import android.os.AsyncTask;
import android.util.Log;

View File

@ -1,4 +1,4 @@
package com.example.journal;
package io.gitjournal.gitjournal;
import android.os.AsyncTask;
import android.util.Log;

View File

@ -1,4 +1,4 @@
package com.example.journal;
package io.gitjournal.gitjournal;
import android.os.AsyncTask;
import android.util.Log;
@ -35,9 +35,7 @@ public class GitCloneTask extends AsyncTask<String, Void, Void> {
Log.d("GitClone Directory", cloneDirPath);
try {
CloneCommand cloneCommand = Git.cloneRepository()
.setURI(url)
.setDirectory(cloneDir)
CloneCommand cloneCommand = Git.cloneRepository().setURI(url).setDirectory(cloneDir)
.setProgressMonitor(new TextProgressMonitor(new PrintWriter(System.out)));
cloneCommand.setTransportConfigCallback(new TransportConfigCallback() {

View File

@ -1,4 +1,4 @@
package com.example.journal;
package io.gitjournal.gitjournal;
import android.os.AsyncTask;
import android.util.Log;

View File

@ -1,4 +1,4 @@
package com.example.journal;
package io.gitjournal.gitjournal;
import android.os.AsyncTask;
import android.util.Log;

View File

@ -1,4 +1,4 @@
package com.example.journal;
package io.gitjournal.gitjournal;
import android.os.AsyncTask;
import android.util.Log;

View File

@ -1,4 +1,4 @@
package com.example.journal;
package io.gitjournal.gitjournal;
import android.os.AsyncTask;
import android.util.Log;

View File

@ -1,4 +1,4 @@
package com.example.journal;
package io.gitjournal.gitjournal;
import java.io.File;
@ -14,13 +14,11 @@ import io.flutter.plugin.common.MethodChannel;
import io.flutter.plugin.common.MethodChannel.MethodCallHandler;
import io.flutter.plugin.common.MethodChannel.Result;
// For EventChannel
import io.flutter.plugin.common.EventChannel;
import io.flutter.util.PathUtils;
public class MainActivity extends FlutterActivity {
private static final String CHANNEL = "gitjournal.io/git";
private static final String STREAM_CLONE_CHANNEL = "gitjournal.io/gitClone";

View File

@ -383,7 +383,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.journal;
PRODUCT_BUNDLE_IDENTIFIER = io.gitjournal.gitjournal;
PRODUCT_NAME = "$(TARGET_NAME)";
VERSIONING_SYSTEM = "apple-generic";
};
@ -407,7 +407,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.journal;
PRODUCT_BUNDLE_IDENTIFIER = io.gitjournal.gitjournal;
PRODUCT_NAME = "$(TARGET_NAME)";
VERSIONING_SYSTEM = "apple-generic";
};