Skip to content

Commit

Permalink
Update to v2.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
GrazianoCapelli committed Sep 30, 2017
1 parent daa1c1a commit dfe3334
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {
applicationId "eu.basicairdata.graziano.gpslogger"
minSdkVersion 8
targetSdkVersion 23
versionCode 18
versionName '2.1.8a_20170911'
versionCode 19
versionName '2.1.8'
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public Dialog onCreateDialog(Bundle savedInstanceState) {
AlertDialog.Builder createAboutAlert = new AlertDialog.Builder(getActivity(), R.style.MyMaterialThemeAbout);

LayoutInflater inflater = getActivity().getLayoutInflater();
final View view = (View) inflater.inflate(R.layout.fragment_about_dialog, null);
final View view = inflater.inflate(R.layout.fragment_about_dialog, null);

TVVersion = (TextView) view.findViewById(R.id.id_about_textView_Version);
String versionName = BuildConfig.VERSION_NAME;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/**
* GPSService - Java Class for Android
* Created by G.Capelli (BasicAirData) on 2/11/2016
*
Expand All @@ -18,7 +18,6 @@

package eu.basicairdata.graziano.gpslogger;


import android.app.Notification;
import android.app.PendingIntent;
import android.app.Service;
Expand Down Expand Up @@ -57,8 +56,7 @@ private Notification getNotification() {
startIntent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
PendingIntent contentIntent = PendingIntent.getActivity(getApplicationContext(), 1, startIntent, 0);
builder.setContentIntent(contentIntent);
Notification notification = builder.build();
return notification;
return builder.build();
}

/* THREAD FOR DEBUG PURPOSE
Expand Down
6 changes: 4 additions & 2 deletions app/src/main/res/layout/fragment_gpsfix.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@
android:textAppearance="@style/TextAppearanceLargeUM"
android:id="@+id/id_textView_LatitudeUM"
android:layout_weight="0"
android:layout_marginLeft="7dp" />
android:layout_marginLeft="7dp"
android:layout_marginStart="7dp"/>
</TableRow>

<TextView
Expand Down Expand Up @@ -116,7 +117,8 @@
android:textAppearance="@style/TextAppearanceLargeUM"
android:id="@+id/id_textView_LongitudeUM"
android:layout_weight="0"
android:layout_marginLeft="7dp" />
android:layout_marginLeft="7dp"
android:layout_marginStart="7dp" />

</TableRow>

Expand Down

0 comments on commit dfe3334

Please sign in to comment.