Skip to content

Commit

Permalink
release package
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaudiaHosu committed May 9, 2020
1 parent 6751086 commit a80ddcc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
Binary file added app/release/app-release.apk
Binary file not shown.
1 change: 1 addition & 0 deletions app/release/output.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":5,"versionName":"1.0.4","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release","dirName":""},"path":"app-release.apk","properties":{}}]
28 changes: 14 additions & 14 deletions app/src/main/java/uk/co/jaspalsvoice/jv/db/DbHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public Long call() throws Exception {
Log.d(TAG, "Insert succeeded, inserted rows:" + insertedRows);
sqlite.setTransactionSuccessful();
} catch (Exception e){
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
}
finally {
sqlite.endTransaction();
Expand Down Expand Up @@ -641,7 +641,7 @@ public Map<String, Doctor> readAllDoctors() {
} catch (InterruptedException e) {
Log.e(TAG, e.getMessage(), e);
} catch (ExecutionException e) {
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
} finally {
if (allDoctors != null) {
allDoctors.close();
Expand Down Expand Up @@ -676,7 +676,7 @@ public List<Doctor> readAllTeamMembers() {
} catch (InterruptedException e) {
Log.e(TAG, e.getMessage(), e);
} catch (ExecutionException e) {
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
} finally {
if (allDoctors != null) {
allDoctors.close();
Expand Down Expand Up @@ -709,7 +709,7 @@ public List<VitalsBloodPressure> readAllBloodPressures() {
} catch (InterruptedException e) {
Log.e(TAG, e.getMessage(), e);
} catch (ExecutionException e) {
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
} finally {
if (allBloodPressures != null) {
allBloodPressures.close();
Expand Down Expand Up @@ -742,7 +742,7 @@ public List<VitalsBloodGlucose> readAllBloodGlucoses() {
} catch (InterruptedException e) {
Log.e(TAG, e.getMessage(), e);
} catch (ExecutionException e) {
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
} finally {
if (allBloodGlucoses != null) {
allBloodGlucoses.close();
Expand Down Expand Up @@ -775,7 +775,7 @@ public List<VitalsHeight> readAllHeights() {
} catch (InterruptedException e) {
Log.e(TAG, e.getMessage(), e);
} catch (ExecutionException e) {
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
} finally {
if (allHeights != null) {
allHeights.close();
Expand Down Expand Up @@ -809,7 +809,7 @@ public List<VitalsWeight> readAllWeights() {
} catch (InterruptedException e) {
Log.e(TAG, e.getMessage(), e);
} catch (ExecutionException e) {
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
} finally {
if (allWeights != null) {
allWeights.close();
Expand Down Expand Up @@ -842,7 +842,7 @@ public List<VitalsOxygenLevel> readAllOxygenLevels() {
} catch (InterruptedException e) {
Log.e(TAG, e.getMessage(), e);
} catch (ExecutionException e) {
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
} finally {
if (allOxygenLevels != null) {
allOxygenLevels.close();
Expand Down Expand Up @@ -876,7 +876,7 @@ public List<MedicalAllergies> readAllMedicalAllergies() {
} catch (InterruptedException e) {
Log.e(TAG, e.getMessage(), e);
} catch (ExecutionException e) {
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
} finally {
if (allMedicalAllergies != null) {
allMedicalAllergies.close();
Expand Down Expand Up @@ -909,7 +909,7 @@ public List<FoodAllergies> readAllFoodAllergies() {
} catch (InterruptedException e) {
Log.e(TAG, e.getMessage(), e);
} catch (ExecutionException e) {
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
} finally {
if (allFoodAllergies != null) {
allFoodAllergies.close();
Expand Down Expand Up @@ -942,7 +942,7 @@ public List<EnvironmentalAllergies> readAllEnvironmentalAllergies() {
} catch (InterruptedException e) {
Log.e(TAG, e.getMessage(), e);
} catch (ExecutionException e) {
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
} finally {
if (allEnvironmentalAllergies != null) {
allEnvironmentalAllergies.close();
Expand Down Expand Up @@ -975,7 +975,7 @@ public List<Diagnosis> readAllDiagnosis() {
} catch (InterruptedException e) {
Log.e(TAG, e.getMessage(), e);
} catch (ExecutionException e) {
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
} finally {
if (allDiagnoses != null) {
allDiagnoses.close();
Expand Down Expand Up @@ -1008,7 +1008,7 @@ public List<SurgicalHistory> readAllSurgicalHistory() {
} catch (InterruptedException e) {
Log.e(TAG, e.getMessage(), e);
} catch (ExecutionException e) {
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
} finally {
if (allHistories != null) {
allHistories.close();
Expand Down Expand Up @@ -1048,7 +1048,7 @@ public List<Medicine> readAllMedicines() {
} catch (InterruptedException e) {
Log.e(TAG, e.getMessage(), e);
} catch (ExecutionException e) {
e.printStackTrace();
Log.e(TAG, e.getMessage(), e);
} finally {
if (allMedicines != null) {
allMedicines.close();
Expand Down

0 comments on commit a80ddcc

Please sign in to comment.