Skip to content

Commit

Permalink
Merge pull request #1609 from instructure/release/parent-3.4.0-42
Browse files Browse the repository at this point in the history
Release Parent 3.4.0 (42)
  • Loading branch information
tamaskozmer authored Jun 20, 2022
2 parents ccbe564 + 46dac98 commit 199c22a
Show file tree
Hide file tree
Showing 1,645 changed files with 118,658 additions and 27,684 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ apps/true/
fastlane/.idea

apps/captures

libs/DocumentScanner/build/
2 changes: 1 addition & 1 deletion android-vault
13 changes: 13 additions & 0 deletions apps/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,16 @@ task assembleAllApps() {
dependsOn ':student:assembleDevDebug'
dependsOn ':teacher:assembleDevDebug'
}

apply from: '../gradle/jacoco.gradle'

configurations.all{
resolutionStrategy {
eachDependency { details ->
if ('org.jacoco' == details.requested.group) {
details.useVersion "0.8.7"
}
}
}
}

2 changes: 1 addition & 1 deletion apps/flutter_parent/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ flutter {
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${Versions.KOTLIN}"

testImplementation 'junit:junit:4.12'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
android:allowBackup="false"
android:fullBackupContent="false"
android:requestLegacyExternalStorage="true">
android:usesCleartextTraffic="true"

<meta-data
android:name="flutterEmbedding"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ object UrlLauncher {

private fun makeIntent(url: String, excludeInstructure: Boolean): Intent {
var intent: Intent = Intent(Intent.ACTION_VIEW).setData(Uri.parse(url));
if (excludeInstructure && Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
if (excludeInstructure) {
intent = Intent.createChooser(intent, null).apply {
putExtra(Intent.EXTRA_EXCLUDE_COMPONENTS, excludeComponents)
}
Expand Down
10 changes: 0 additions & 10 deletions apps/flutter_parent/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
buildscript {
ext.kotlin_version = '1.2.71'
repositories {
google()
mavenCentral()
Expand All @@ -26,15 +25,6 @@ subprojects {
}
subprojects {
project.evaluationDependsOn(':app')
//TODO revisit this when the firebase_remote_config is finally updated (https://github.com/FirebaseExtended/flutterfire/issues/3847)
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.google.protobuf'
&& details.requested.name.contains('protobuf-javalite') ) {
details.useTarget group: details.requested.group, name: 'protobuf-lite', version:'3.0.1'
}
}
}
}

task clean(type: Delete) {
Expand Down
Binary file not shown.
9 changes: 9 additions & 0 deletions apps/flutter_parent/lib/l10n/app_localizations.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1651,4 +1651,13 @@ class AppLocalizations {

String get qrCodeNoCameraError =>
Intl.message('QR scanning requires camera access', desc: 'placeholder for camera error for QR code scan');

String get lockedForUserError =>
Intl.message('The linked item is no longer available', desc: 'error message when the alert could no be opened');

String get lockedForUserTitle =>
Intl.message('Locked', desc: 'title for locked alerts');

String get messageSent =>
Intl.message('Message sent', desc: 'confirmation message on the screen when the user succesfully sends a message');
}
Loading

0 comments on commit 199c22a

Please sign in to comment.