Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

Commit

Permalink
v. 1.0.40
Browse files Browse the repository at this point in the history
  • Loading branch information
sytolk committed Jul 8, 2016
1 parent abeeec3 commit 80a6668
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ out/
build/

# Local configuration file (sdk path, etc)
#local.properties
local.properties

# Proguard folder generated by Eclipse
proguard/
Expand All @@ -43,3 +43,4 @@ captures/

target/
gen-external-apklibs/
doc/
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.opentaxi.android"
android:versionName="1.0.38"
android:versionCode="38"
android:versionName="1.0.40"
android:versionCode="40"
android:installLocation="auto">

<uses-sdk
Expand Down
7 changes: 7 additions & 0 deletions proguard.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
-keep class com.stil.** { *; }
-keep interface com.stil.** { *; }

## pojos models
-keep class com.taxibulgaria.** { *; }
-keep interface com.taxibulgaria.** { *; }

### apache http client for android
-dontwarn org.apache.commons.**
-keep class org.apache.http.** { *; }
Expand Down Expand Up @@ -89,3 +93,6 @@
### JSON
#-keep class org.json.** { *; }
#-keep interface org.json.** { *; }

##GSON
# -keep class sun.misc.Unsafe
4 changes: 2 additions & 2 deletions src/com/opentaxi/android/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ public Dialog onCreateDialog(Bundle savedInstanceState) {
}
}*/

@UiThread
/*@UiThread
public void createNotification() {
// Prepare intent which is triggered if the
// notification is selected
Expand All @@ -649,7 +649,7 @@ public void createNotification() {
noti.defaults |= Notification.DEFAULT_VIBRATE;
notificationManager.notify(0, noti);
}
}*/

private void doObtainedLocation(Location location) {
try {
Expand Down
2 changes: 1 addition & 1 deletion src/com/opentaxi/android/fragments/NewClientFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ void sendButton() {

@FocusChange({R.id.userNameField})
void focusChangedOnUserNameField(View userField, boolean hasFocus) {
if (!hasFocus) {
if (!hasFocus && userName!=null) {
userName.setError(null);
checkUsername(userName.getText().toString());
}
Expand Down

0 comments on commit 80a6668

Please sign in to comment.