Skip to content

Commit

Permalink
Merge pull request wewewe718#50 from dmitriy-ilchenko/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
wewewe718 authored Nov 11, 2020
2 parents 38e599c + d4832ef commit be54706
Show file tree
Hide file tree
Showing 11 changed files with 1,874 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## 1.7
* Add translations: Chinese, French, Japanese, Polish, Spanish

## 1.6
* Add a setting to avoid duplicates in history
* Add an option to manually save to history
Expand Down
8 changes: 2 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId "com.example.barcodescanner"
minSdkVersion 21
targetSdkVersion 29
versionCode 8
versionName "1.6"
versionCode 9
versionName "1.7"
multiDexEnabled true
vectorDrawables.useSupportLibrary true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand All @@ -24,10 +24,6 @@ android {
}
}

Properties properties = new Properties()
properties.load(project.rootProject.file("local.properties").newDataInputStream())

resValue "string", "sentryDSN", properties.getProperty("sentryDSN")
buildConfigField "boolean", "ERROR_REPORTS_ENABLED_BY_DEFAULT", "true"
}

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 @@ -28,7 +28,7 @@

<meta-data
android:name="io.sentry.dsn"
android:value="@string/sentryDSN"
android:value="https://09f3022eb19f4fa7ba332b1f44188ff1@o432234.ingest.sentry.io/5384638"
/>

<provider
Expand Down
374 changes: 374 additions & 0 deletions app/src/main/res/values-es/strings.xml

Large diffs are not rendered by default.

374 changes: 374 additions & 0 deletions app/src/main/res/values-fr-FR/strings.xml

Large diffs are not rendered by default.

374 changes: 374 additions & 0 deletions app/src/main/res/values-ja/strings.xml

Large diffs are not rendered by default.

370 changes: 370 additions & 0 deletions app/src/main/res/values-pl/strings.xml

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions app/src/main/res/values-pt-rBR/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@
<item>JSON</item>
</string-array>
<string name="activity_export_history_file_name_hint">Nome do arquivo</string>
<string name="activity_export_history_file_name_default" translatable="false">db</string>
<string name="activity_export_history_export">Exportar</string>
<string name="activity_export_history_exported">Salvado em pasta de Downloads</string>

Expand Down Expand Up @@ -361,5 +360,4 @@

<!--Barcode formats-->
<string name="barcode_format_qr_code">Código QR</string>

</resources>
374 changes: 374 additions & 0 deletions app/src/main/res/values-zh-CN/strings.xml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Add translations: Chinese, French, Japanese, Polish, Spanish
1 change: 1 addition & 0 deletions fastlane/metadata/android/ru/changelogs/9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Добавлены переводы: китайский, французский, японский, польский, испанский

0 comments on commit be54706

Please sign in to comment.