Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Kontalk devteam committed May 7, 2016
2 parents aacf0e9 + 1fe9983 commit 19b3f45
Show file tree
Hide file tree
Showing 24 changed files with 1,478 additions and 927 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ android {

defaultConfig {
applicationId "org.kontalk"
versionCode 119
versionCode 120
versionName "3.1.9-preview"
targetSdkVersion 22
minSdkVersion 9
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
</intent-filter>
</activity>

<activity android:name=".ui.PreferencesActivity">
<activity android:name=".ui.prefs.PreferencesActivity">
<intent-filter>
<action android:name="android.intent.action.MANAGE_NETWORK_USAGE" />
<category android:name="android.intent.category.DEFAULT" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
import org.kontalk.provider.MyMessages.Threads;
import org.kontalk.service.msgcenter.MessageCenterService;
import org.kontalk.sync.Syncer;
import org.kontalk.ui.prefs.PreferencesActivity;
import org.kontalk.ui.view.ContactPickerListener;
import org.kontalk.util.MessageUtils;
import org.kontalk.util.Preferences;
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/java/org/kontalk/ui/NumberValidation.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

import org.jivesoftware.smack.util.StringUtils;
import org.jxmpp.util.XmppStringUtils;
import org.kontalk.ui.prefs.PreferencesActivity;
import org.spongycastle.openpgp.PGPException;

import android.accounts.Account;
Expand Down Expand Up @@ -723,7 +724,7 @@ public void onFileSelection(@NonNull FileChooserDialog fileChooserDialog, @NonNu
startImport(new FileInputStream(file));
}
catch (FileNotFoundException e) {
Log.e(PreferencesFragment.TAG, "error importing keys", e);
Log.e(TAG, "error importing keys", e);
Toast.makeText(this,
R.string.err_import_keypair_read,
Toast.LENGTH_LONG).show();
Expand Down
Loading

0 comments on commit 19b3f45

Please sign in to comment.