Remove firebase_abstract_method_smoke_test
(#159145)
Deleted Android embedding smoke test `firebase_abstract_method_smoke_test`. It is part of v1 embedding removal cleanup. This test was marked bringup. Fixes https://github.com/flutter/flutter/issues/158212 ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [x] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [x] I signed the [CLA]. - [x] I listed at least one issue that this PR fixes in the description above. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] I added new tests to check the change I am making, or this PR is [test-exempt]. - [x] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [x] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview [Tree Hygiene]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md [test-exempt]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests [Flutter Style Guide]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md [Features we expect every widget to implement]: https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md [Data Driven Fixes]: https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
This commit is contained in:
parent
7662e7eae5
commit
81d2bf5d79
33
.ci.yaml
33
.ci.yaml
@ -636,39 +636,6 @@ targets:
|
|||||||
- bin/**
|
- bin/**
|
||||||
- .ci.yaml
|
- .ci.yaml
|
||||||
|
|
||||||
- name: Linux firebase_abstract_method_smoke_test
|
|
||||||
presubmit: false
|
|
||||||
bringup: true # https://github.com/flutter/flutter/issues/147335
|
|
||||||
recipe: firebaselab/firebaselab
|
|
||||||
timeout: 60
|
|
||||||
properties:
|
|
||||||
dependencies: >-
|
|
||||||
[
|
|
||||||
{"dependency": "android_sdk", "version": "version:35v1"},
|
|
||||||
{"dependency": "open_jdk", "version": "version:17"}
|
|
||||||
]
|
|
||||||
tags: >
|
|
||||||
["firebaselab"]
|
|
||||||
task_name: abstract_method_smoke_test
|
|
||||||
physical_devices: >-
|
|
||||||
[
|
|
||||||
"--device", "model=shiba,version=34",
|
|
||||||
"--device", "model=panther,version=33",
|
|
||||||
"--device", "model=redfin,version=30"
|
|
||||||
]
|
|
||||||
# TODO(flutter/flutter#123331): This device is flaking.
|
|
||||||
# "--device", "model=Nexus6P,version=25"
|
|
||||||
virtual_devices: >-
|
|
||||||
[
|
|
||||||
"--device", "model=Nexus5.gce_x86,version=21",
|
|
||||||
"--device", "model=Nexus5.gce_x86,version=22",
|
|
||||||
"--device", "model=Nexus5.gce_x86,version=23",
|
|
||||||
"--device", "model=Nexus6P,version=25",
|
|
||||||
"--device", "model=Nexus6P,version=26",
|
|
||||||
"--device", "model=Nexus6P,version=27",
|
|
||||||
"--device", "model=NexusLowRes,version=29"
|
|
||||||
]
|
|
||||||
|
|
||||||
- name: Linux firebase_release_smoke_test
|
- name: Linux firebase_release_smoke_test
|
||||||
recipe: firebaselab/firebaselab
|
recipe: firebaselab/firebaselab
|
||||||
bringup: true # https://github.com/flutter/flutter/issues/147335
|
bringup: true # https://github.com/flutter/flutter/issues/147335
|
||||||
|
@ -315,7 +315,6 @@
|
|||||||
/dev/integration_tests/deferred_components_test @gmackall @flutter/android
|
/dev/integration_tests/deferred_components_test @gmackall @flutter/android
|
||||||
|
|
||||||
## Firebase tests
|
## Firebase tests
|
||||||
/dev/integration_tests/abstract_method_smoke_test @reidbaker @flutter/android
|
|
||||||
/dev/integration_tests/release_smoke_test @reidbaker @flutter/android
|
/dev/integration_tests/release_smoke_test @reidbaker @flutter/android
|
||||||
|
|
||||||
## Shards tests
|
## Shards tests
|
||||||
|
@ -1,68 +0,0 @@
|
|||||||
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
|
||||||
// found in the LICENSE file.
|
|
||||||
|
|
||||||
plugins {
|
|
||||||
id "com.android.application"
|
|
||||||
id "kotlin-android"
|
|
||||||
id "dev.flutter.flutter-gradle-plugin"
|
|
||||||
}
|
|
||||||
|
|
||||||
def localProperties = new Properties()
|
|
||||||
def localPropertiesFile = rootProject.file('local.properties')
|
|
||||||
if (localPropertiesFile.exists()) {
|
|
||||||
localPropertiesFile.withReader('UTF-8') { reader ->
|
|
||||||
localProperties.load(reader)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
|
||||||
if (flutterVersionCode == null) {
|
|
||||||
flutterVersionCode = '1'
|
|
||||||
}
|
|
||||||
|
|
||||||
def flutterVersionName = localProperties.getProperty('flutter.versionName')
|
|
||||||
if (flutterVersionName == null) {
|
|
||||||
flutterVersionName = '1.0'
|
|
||||||
}
|
|
||||||
|
|
||||||
android {
|
|
||||||
namespace = "com.example.abstract_method_smoke_test"
|
|
||||||
compileSdk flutter.compileSdkVersion
|
|
||||||
|
|
||||||
compileOptions {
|
|
||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
|
||||||
targetCompatibility JavaVersion.VERSION_1_8
|
|
||||||
}
|
|
||||||
|
|
||||||
kotlinOptions {
|
|
||||||
jvmTarget = '1.8'
|
|
||||||
}
|
|
||||||
|
|
||||||
sourceSets {
|
|
||||||
main.java.srcDirs += 'src/main/kotlin'
|
|
||||||
}
|
|
||||||
|
|
||||||
defaultConfig {
|
|
||||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
|
||||||
applicationId "com.example.abstract_method_smoke_test"
|
|
||||||
minSdkVersion 21
|
|
||||||
targetSdkVersion flutter.targetSdkVersion
|
|
||||||
versionCode flutterVersionCode.toInteger()
|
|
||||||
versionName flutterVersionName
|
|
||||||
}
|
|
||||||
|
|
||||||
buildTypes {
|
|
||||||
release {
|
|
||||||
signingConfig signingConfigs.debug
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
flutter {
|
|
||||||
source '../..'
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.10"
|
|
||||||
}
|
|
@ -1,11 +0,0 @@
|
|||||||
<!-- Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
Use of this source code is governed by a BSD-style license that can be
|
|
||||||
found in the LICENSE file. -->
|
|
||||||
|
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
package="com.example.abstract_method_smoke_test">
|
|
||||||
<!-- Flutter needs it to communicate with the running application
|
|
||||||
to allow setting breakpoints, to provide hot reload, etc.
|
|
||||||
-->
|
|
||||||
<uses-permission android:name="android.permission.INTERNET"/>
|
|
||||||
</manifest>
|
|
@ -1,44 +0,0 @@
|
|||||||
<!-- Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
Use of this source code is governed by a BSD-style license that can be
|
|
||||||
found in the LICENSE file. -->
|
|
||||||
|
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
||||||
<!-- ${applicationName} is used by the Flutter tool to select the Application
|
|
||||||
class to use. For most apps, this is the default Android application.
|
|
||||||
In most cases you can leave this as-is, but you if you want to provide
|
|
||||||
additional functionality it is fine to subclass or reimplement
|
|
||||||
Application and put your custom class here. -->
|
|
||||||
<application
|
|
||||||
android:name="${applicationName}"
|
|
||||||
android:label="abstract_method_smoke_test">
|
|
||||||
<activity
|
|
||||||
android:name=".MainActivity"
|
|
||||||
android:exported="true"
|
|
||||||
android:launchMode="singleTop"
|
|
||||||
android:theme="@style/LaunchTheme"
|
|
||||||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
|
||||||
android:hardwareAccelerated="true"
|
|
||||||
android:windowSoftInputMode="stateVisible|adjustResize">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.MAIN"/>
|
|
||||||
<category android:name="android.intent.category.LAUNCHER"/>
|
|
||||||
</intent-filter>
|
|
||||||
</activity>
|
|
||||||
<!-- Don't delete the meta-data below.
|
|
||||||
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
|
||||||
<meta-data
|
|
||||||
android:name="flutterEmbedding"
|
|
||||||
android:value="2" />
|
|
||||||
</application>
|
|
||||||
<!-- Required to query activities that can process text, see:
|
|
||||||
https://developer.android.com/training/package-visibility and
|
|
||||||
https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
|
|
||||||
|
|
||||||
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
|
|
||||||
<queries>
|
|
||||||
<intent>
|
|
||||||
<action android:name="android.intent.action.PROCESS_TEXT"/>
|
|
||||||
<data android:mimeType="text/plain"/>
|
|
||||||
</intent>
|
|
||||||
</queries>
|
|
||||||
</manifest>
|
|
@ -1,72 +0,0 @@
|
|||||||
package com.example.abstract_method_smoke_test
|
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import android.graphics.Color
|
|
||||||
import android.view.View
|
|
||||||
import android.view.inputmethod.InputMethodManager
|
|
||||||
import androidx.annotation.NonNull
|
|
||||||
import io.flutter.embedding.android.FlutterActivity
|
|
||||||
import io.flutter.embedding.engine.FlutterEngine
|
|
||||||
import io.flutter.embedding.engine.plugins.shim.ShimPluginRegistry
|
|
||||||
import io.flutter.plugin.common.MethodChannel
|
|
||||||
import io.flutter.plugin.common.StandardMessageCodec
|
|
||||||
import io.flutter.plugin.platform.PlatformView
|
|
||||||
import io.flutter.plugin.platform.PlatformViewFactory
|
|
||||||
import io.flutter.plugins.GeneratedPluginRegistrant
|
|
||||||
|
|
||||||
class MainActivity : FlutterActivity() {
|
|
||||||
class SimplePlatformView(context: Context) : PlatformView {
|
|
||||||
private val view: View = View(context)
|
|
||||||
|
|
||||||
init {
|
|
||||||
view.setBackgroundColor(Color.CYAN)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun dispose() {}
|
|
||||||
|
|
||||||
override fun getView(): View {
|
|
||||||
return view
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun configureFlutterEngine(
|
|
||||||
@NonNull flutterEngine: FlutterEngine
|
|
||||||
) {
|
|
||||||
GeneratedPluginRegistrant.registerWith(flutterEngine)
|
|
||||||
|
|
||||||
val shimPluginRegistry = ShimPluginRegistry(flutterEngine)
|
|
||||||
shimPluginRegistry.registrarFor("com.example.abstract_method_smoke_test")
|
|
||||||
.platformViewRegistry()
|
|
||||||
.registerViewFactory(
|
|
||||||
"simple",
|
|
||||||
object : PlatformViewFactory(StandardMessageCodec.INSTANCE) {
|
|
||||||
override fun create(
|
|
||||||
context: Context?,
|
|
||||||
viewId: Int,
|
|
||||||
args: Any?
|
|
||||||
): PlatformView {
|
|
||||||
return SimplePlatformView(this@MainActivity)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
// Triggers the Android keyboard, which causes the resize of the Flutter view.
|
|
||||||
// We need to wait for the app to complete.
|
|
||||||
MethodChannel(flutterEngine.getDartExecutor(), "com.example.abstract_method_smoke_test")
|
|
||||||
.setMethodCallHandler { _, result ->
|
|
||||||
toggleInput()
|
|
||||||
result.success(null)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onPause() {
|
|
||||||
// Hide the input when the app is closed.
|
|
||||||
toggleInput()
|
|
||||||
super.onPause()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun toggleInput() {
|
|
||||||
val imm = getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
|
|
||||||
imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, 0)
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
<!-- Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
Use of this source code is governed by a BSD-style license that can be
|
|
||||||
found in the LICENSE file. -->
|
|
||||||
|
|
||||||
<!-- Modify this file to customize your launch splash screen -->
|
|
||||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
||||||
<item android:drawable="@android:color/white" />
|
|
||||||
|
|
||||||
<!-- You can insert your own image assets here -->
|
|
||||||
<!-- <item>
|
|
||||||
<bitmap
|
|
||||||
android:gravity="center"
|
|
||||||
android:src="@mipmap/launch_image" />
|
|
||||||
</item> -->
|
|
||||||
</layer-list>
|
|
@ -1,11 +0,0 @@
|
|||||||
<!-- Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
Use of this source code is governed by a BSD-style license that can be
|
|
||||||
found in the LICENSE file. -->
|
|
||||||
|
|
||||||
<resources>
|
|
||||||
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
|
||||||
Flutter draws its first frame -->
|
|
||||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
|
||||||
</style>
|
|
||||||
</resources>
|
|
@ -1,11 +0,0 @@
|
|||||||
<!-- Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
Use of this source code is governed by a BSD-style license that can be
|
|
||||||
found in the LICENSE file. -->
|
|
||||||
|
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
package="com.example.abstract_method_smoke_test">
|
|
||||||
<!-- Flutter needs it to communicate with the running application
|
|
||||||
to allow setting breakpoints, to provide hot reload, etc.
|
|
||||||
-->
|
|
||||||
<uses-permission android:name="android.permission.INTERNET"/>
|
|
||||||
</manifest>
|
|
@ -1,34 +0,0 @@
|
|||||||
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
|
||||||
// found in the LICENSE file.
|
|
||||||
|
|
||||||
// This file is auto generated.
|
|
||||||
// To update all the build.gradle files in the Flutter repo,
|
|
||||||
// See dev/tools/bin/generate_gradle_lockfiles.dart.
|
|
||||||
|
|
||||||
allprojects {
|
|
||||||
repositories {
|
|
||||||
google()
|
|
||||||
mavenCentral()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
rootProject.buildDir = '../build'
|
|
||||||
|
|
||||||
subprojects {
|
|
||||||
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
|
||||||
}
|
|
||||||
subprojects {
|
|
||||||
project.evaluationDependsOn(':app')
|
|
||||||
dependencyLocking {
|
|
||||||
ignoredDependencies.add('io.flutter:*')
|
|
||||||
lockFile = file("${rootProject.projectDir}/project-${project.name}.lockfile")
|
|
||||||
if (!project.hasProperty('local-engine-repo')) {
|
|
||||||
lockAllConfigurations()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.register("clean", Delete) {
|
|
||||||
delete rootProject.buildDir
|
|
||||||
}
|
|
@ -1,153 +0,0 @@
|
|||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
androidx.databinding:databinding-common:8.7.0=classpath
|
|
||||||
androidx.databinding:databinding-compiler-common:8.7.0=classpath
|
|
||||||
com.android.application:com.android.application.gradle.plugin:8.7.0=classpath
|
|
||||||
com.android.databinding:baseLibrary:8.7.0=classpath
|
|
||||||
com.android.tools.analytics-library:crash:31.7.0=classpath
|
|
||||||
com.android.tools.analytics-library:protos:31.7.0=classpath
|
|
||||||
com.android.tools.analytics-library:shared:31.7.0=classpath
|
|
||||||
com.android.tools.analytics-library:tracker:31.7.0=classpath
|
|
||||||
com.android.tools.build.jetifier:jetifier-core:1.0.0-beta10=classpath
|
|
||||||
com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta10=classpath
|
|
||||||
com.android.tools.build:aapt2-proto:8.7.0-12006047=classpath
|
|
||||||
com.android.tools.build:aaptcompiler:8.7.0=classpath
|
|
||||||
com.android.tools.build:apksig:8.7.0=classpath
|
|
||||||
com.android.tools.build:apkzlib:8.7.0=classpath
|
|
||||||
com.android.tools.build:builder-model:8.7.0=classpath
|
|
||||||
com.android.tools.build:builder-test-api:8.7.0=classpath
|
|
||||||
com.android.tools.build:builder:8.7.0=classpath
|
|
||||||
com.android.tools.build:bundletool:1.17.1=classpath
|
|
||||||
com.android.tools.build:gradle-api:8.7.0=classpath
|
|
||||||
com.android.tools.build:gradle-settings-api:8.7.0=classpath
|
|
||||||
com.android.tools.build:gradle:8.7.0=classpath
|
|
||||||
com.android.tools.build:manifest-merger:31.7.0=classpath
|
|
||||||
com.android.tools.build:transform-api:2.0.0-deprecated-use-gradle-api=classpath
|
|
||||||
com.android.tools.ddms:ddmlib:31.7.0=classpath
|
|
||||||
com.android.tools.layoutlib:layoutlib-api:31.7.0=classpath
|
|
||||||
com.android.tools.lint:lint-model:31.7.0=classpath
|
|
||||||
com.android.tools.lint:lint-typedef-remover:31.7.0=classpath
|
|
||||||
com.android.tools.utp:android-device-provider-ddmlib-proto:31.7.0=classpath
|
|
||||||
com.android.tools.utp:android-device-provider-gradle-proto:31.7.0=classpath
|
|
||||||
com.android.tools.utp:android-device-provider-profile-proto:31.7.0=classpath
|
|
||||||
com.android.tools.utp:android-test-plugin-host-additional-test-output-proto:31.7.0=classpath
|
|
||||||
com.android.tools.utp:android-test-plugin-host-apk-installer-proto:31.7.0=classpath
|
|
||||||
com.android.tools.utp:android-test-plugin-host-coverage-proto:31.7.0=classpath
|
|
||||||
com.android.tools.utp:android-test-plugin-host-emulator-control-proto:31.7.0=classpath
|
|
||||||
com.android.tools.utp:android-test-plugin-host-logcat-proto:31.7.0=classpath
|
|
||||||
com.android.tools.utp:android-test-plugin-host-retention-proto:31.7.0=classpath
|
|
||||||
com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:31.7.0=classpath
|
|
||||||
com.android.tools:annotations:31.7.0=classpath
|
|
||||||
com.android.tools:common:31.7.0=classpath
|
|
||||||
com.android.tools:dvlib:31.7.0=classpath
|
|
||||||
com.android.tools:repository:31.7.0=classpath
|
|
||||||
com.android.tools:sdk-common:31.7.0=classpath
|
|
||||||
com.android.tools:sdklib:31.7.0=classpath
|
|
||||||
com.android:signflinger:8.7.0=classpath
|
|
||||||
com.android:zipflinger:8.7.0=classpath
|
|
||||||
com.google.android:annotations:4.1.1.4=classpath
|
|
||||||
com.google.api.grpc:proto-google-common-protos:2.17.0=classpath
|
|
||||||
com.google.auto.value:auto-value-annotations:1.6.2=classpath
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2=classpath
|
|
||||||
com.google.code.gson:gson:2.10.1=classpath
|
|
||||||
com.google.crypto.tink:tink:1.7.0=classpath
|
|
||||||
com.google.dagger:dagger:2.28.3=classpath
|
|
||||||
com.google.errorprone:error_prone_annotations:2.18.0=classpath
|
|
||||||
com.google.flatbuffers:flatbuffers-java:1.12.0=classpath
|
|
||||||
com.google.guava:failureaccess:1.0.1=classpath
|
|
||||||
com.google.guava:guava:32.0.1-jre=classpath
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=classpath
|
|
||||||
com.google.j2objc:j2objc-annotations:2.8=classpath
|
|
||||||
com.google.jimfs:jimfs:1.1=classpath
|
|
||||||
com.google.protobuf:protobuf-java-util:3.22.3=classpath
|
|
||||||
com.google.protobuf:protobuf-java:3.22.3=classpath
|
|
||||||
com.google.testing.platform:core-proto:0.0.9-alpha02=classpath
|
|
||||||
com.googlecode.juniversalchardet:juniversalchardet:1.0.3=classpath
|
|
||||||
com.squareup:javapoet:1.10.0=classpath
|
|
||||||
com.squareup:javawriter:2.5.0=classpath
|
|
||||||
com.sun.activation:javax.activation:1.2.0=classpath
|
|
||||||
com.sun.istack:istack-commons-runtime:3.0.8=classpath
|
|
||||||
com.sun.xml.fastinfoset:FastInfoset:1.2.16=classpath
|
|
||||||
commons-codec:commons-codec:1.11=classpath
|
|
||||||
commons-io:commons-io:2.13.0=classpath
|
|
||||||
commons-logging:commons-logging:1.2=classpath
|
|
||||||
io.grpc:grpc-api:1.57.0=classpath
|
|
||||||
io.grpc:grpc-context:1.57.0=classpath
|
|
||||||
io.grpc:grpc-core:1.57.0=classpath
|
|
||||||
io.grpc:grpc-netty:1.57.0=classpath
|
|
||||||
io.grpc:grpc-protobuf-lite:1.57.0=classpath
|
|
||||||
io.grpc:grpc-protobuf:1.57.0=classpath
|
|
||||||
io.grpc:grpc-stub:1.57.0=classpath
|
|
||||||
io.netty:netty-buffer:4.1.93.Final=classpath
|
|
||||||
io.netty:netty-codec-http2:4.1.93.Final=classpath
|
|
||||||
io.netty:netty-codec-http:4.1.93.Final=classpath
|
|
||||||
io.netty:netty-codec-socks:4.1.93.Final=classpath
|
|
||||||
io.netty:netty-codec:4.1.93.Final=classpath
|
|
||||||
io.netty:netty-common:4.1.93.Final=classpath
|
|
||||||
io.netty:netty-handler-proxy:4.1.93.Final=classpath
|
|
||||||
io.netty:netty-handler:4.1.93.Final=classpath
|
|
||||||
io.netty:netty-resolver:4.1.93.Final=classpath
|
|
||||||
io.netty:netty-transport-native-unix-common:4.1.93.Final=classpath
|
|
||||||
io.netty:netty-transport:4.1.93.Final=classpath
|
|
||||||
io.perfmark:perfmark-api:0.26.0=classpath
|
|
||||||
jakarta.activation:jakarta.activation-api:1.2.1=classpath
|
|
||||||
jakarta.xml.bind:jakarta.xml.bind-api:2.3.2=classpath
|
|
||||||
javax.annotation:javax.annotation-api:1.3.2=classpath
|
|
||||||
javax.inject:javax.inject:1=classpath
|
|
||||||
net.java.dev.jna:jna-platform:5.6.0=classpath
|
|
||||||
net.java.dev.jna:jna:5.6.0=classpath
|
|
||||||
net.sf.jopt-simple:jopt-simple:4.9=classpath
|
|
||||||
net.sf.kxml:kxml2:2.3.0=classpath
|
|
||||||
org.apache.commons:commons-compress:1.21=classpath
|
|
||||||
org.apache.httpcomponents:httpclient:4.5.14=classpath
|
|
||||||
org.apache.httpcomponents:httpcore:4.4.16=classpath
|
|
||||||
org.apache.httpcomponents:httpmime:4.5.6=classpath
|
|
||||||
org.bitbucket.b_c:jose4j:0.9.5=classpath
|
|
||||||
org.bouncycastle:bcpkix-jdk18on:1.77=classpath
|
|
||||||
org.bouncycastle:bcprov-jdk18on:1.77=classpath
|
|
||||||
org.bouncycastle:bcutil-jdk18on:1.77=classpath
|
|
||||||
org.checkerframework:checker-qual:3.33.0=classpath
|
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.23=classpath
|
|
||||||
org.glassfish.jaxb:jaxb-runtime:2.3.2=classpath
|
|
||||||
org.glassfish.jaxb:txw2:2.3.2=classpath
|
|
||||||
org.jdom:jdom2:2.0.6=classpath
|
|
||||||
org.jetbrains.intellij.deps:trove4j:1.0.20200330=classpath
|
|
||||||
org.jetbrains.kotlin.android:org.jetbrains.kotlin.android.gradle.plugin:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-android-extensions:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-annotation-processing-gradle:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-build-common:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-compiler-embeddable:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-compiler-runner:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-daemon-client:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-daemon-embeddable:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-gradle-plugin-idea-proto:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-gradle-plugin-idea:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-gradle-plugin-model:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-klib-commonizer-api:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-native-utils:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-project-model:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-reflect:1.9.20=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-scripting-common:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-scripting-jvm:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.20=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.20=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-stdlib:1.9.20=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-tooling-core:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-util-io:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlin:kotlin-util-klib:1.8.10=classpath
|
|
||||||
org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.0=classpath
|
|
||||||
org.jetbrains:annotations:23.0.0=classpath
|
|
||||||
org.jvnet.staxex:stax-ex:1.8.1=classpath
|
|
||||||
org.ow2.asm:asm-analysis:9.6=classpath
|
|
||||||
org.ow2.asm:asm-commons:9.6=classpath
|
|
||||||
org.ow2.asm:asm-tree:9.6=classpath
|
|
||||||
org.ow2.asm:asm-util:9.6=classpath
|
|
||||||
org.ow2.asm:asm:9.6=classpath
|
|
||||||
org.slf4j:slf4j-api:1.7.30=classpath
|
|
||||||
org.tensorflow:tensorflow-lite-metadata:0.1.0-rc2=classpath
|
|
||||||
empty=
|
|
@ -1,3 +0,0 @@
|
|||||||
org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
|
|
||||||
android.enableJetifier=true
|
|
||||||
android.useAndroidX=true
|
|
@ -1,5 +0,0 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
|
||||||
distributionPath=wrapper/dists
|
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
|
||||||
zipStorePath=wrapper/dists
|
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
|
|
File diff suppressed because one or more lines are too long
@ -1,67 +0,0 @@
|
|||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
androidx.activity:activity:1.0.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.annotation:annotation-experimental:1.1.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.annotation:annotation:1.2.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.arch.core:core-common:2.1.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.arch.core:core-runtime:2.0.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.collection:collection:1.1.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.core:core:1.6.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.customview:customview:1.0.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.fragment:fragment:1.1.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.lifecycle:lifecycle-common-java8:2.2.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.lifecycle:lifecycle-common:2.2.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.lifecycle:lifecycle-livedata-core:2.0.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.lifecycle:lifecycle-livedata:2.0.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.lifecycle:lifecycle-runtime:2.2.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.lifecycle:lifecycle-viewmodel:2.1.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.loader:loader:1.0.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.savedstate:savedstate:1.0.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.test.espresso:espresso-core:3.2.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.test.espresso:espresso-idling-resource:3.2.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.test:monitor:1.2.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.test:rules:1.2.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.test:runner:1.2.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.tracing:tracing:1.0.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.versionedparcelable:versionedparcelable:1.1.1=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.viewpager:viewpager:1.0.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.window:window-java:1.0.0-beta04=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
androidx.window:window:1.0.0-beta04=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
com.google.errorprone:error_prone_annotations:2.3.2=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
com.google.guava:failureaccess:1.0.1=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
com.google.guava:guava:28.1-android=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
com.google.j2objc:j2objc-annotations:1.3=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
com.squareup:javawriter:2.1.1=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
javax.inject:javax.inject:1=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
junit:junit:4.12=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
net.bytebuddy:byte-buddy-agent:1.12.22=debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
net.bytebuddy:byte-buddy:1.12.22=debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
net.sf.kxml:kxml2:2.3.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.checkerframework:checker-compat-qual:2.5.5=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.18=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.hamcrest:hamcrest-core:1.3=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.hamcrest:hamcrest-integration:1.3=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.hamcrest:hamcrest-library:1.3=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.jacoco:org.jacoco.agent:0.8.7=androidJacocoAnt
|
|
||||||
org.jacoco:org.jacoco.ant:0.8.7=androidJacocoAnt
|
|
||||||
org.jacoco:org.jacoco.core:0.8.7=androidJacocoAnt
|
|
||||||
org.jacoco:org.jacoco.report:0.8.7=androidJacocoAnt
|
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.30=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.30=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.jetbrains.kotlin:kotlin-stdlib:1.5.31=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.2=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.jetbrains:annotations:13.0=debugAndroidTestCompileClasspath,debugAndroidTestRuntimeClasspath,debugCompileClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.mockito:mockito-core:5.0.0=debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.mockito:mockito-inline:5.0.0=debugUnitTestCompileClasspath,debugUnitTestRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.objenesis:objenesis:3.3=debugUnitTestRuntimeClasspath,profileUnitTestRuntimeClasspath,releaseUnitTestRuntimeClasspath
|
|
||||||
org.ow2.asm:asm-analysis:9.1=androidJacocoAnt
|
|
||||||
org.ow2.asm:asm-commons:9.1=androidJacocoAnt
|
|
||||||
org.ow2.asm:asm-tree:9.1=androidJacocoAnt
|
|
||||||
org.ow2.asm:asm:9.1=androidJacocoAnt
|
|
||||||
empty=androidApis,androidJdkImage,androidTestUtil,coreLibraryDesugaring,debugAndroidTestAnnotationProcessorClasspath,debugAnnotationProcessorClasspath,debugUnitTestAnnotationProcessorClasspath,lintChecks,lintPublish,profileAnnotationProcessorClasspath,profileUnitTestAnnotationProcessorClasspath,releaseAnnotationProcessorClasspath,releaseUnitTestAnnotationProcessorClasspath
|
|
@ -1,41 +0,0 @@
|
|||||||
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
|
||||||
// found in the LICENSE file.
|
|
||||||
|
|
||||||
// This file is auto generated.
|
|
||||||
// To update all the settings.gradle files in the Flutter repo,
|
|
||||||
// See dev/tools/bin/generate_gradle_lockfiles.dart.
|
|
||||||
|
|
||||||
pluginManagement {
|
|
||||||
def flutterSdkPath = {
|
|
||||||
def properties = new Properties()
|
|
||||||
file("local.properties").withInputStream { properties.load(it) }
|
|
||||||
def flutterSdkPath = properties.getProperty("flutter.sdk")
|
|
||||||
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
|
|
||||||
return flutterSdkPath
|
|
||||||
}
|
|
||||||
settings.ext.flutterSdkPath = flutterSdkPath()
|
|
||||||
|
|
||||||
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
|
|
||||||
|
|
||||||
repositories {
|
|
||||||
google()
|
|
||||||
mavenCentral()
|
|
||||||
gradlePluginPortal()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
buildscript {
|
|
||||||
dependencyLocking {
|
|
||||||
lockFile = file("${rootProject.projectDir}/buildscript-gradle.lockfile")
|
|
||||||
lockAllConfigurations()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
plugins {
|
|
||||||
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
|
||||||
id "com.android.application" version "8.7.0" apply false
|
|
||||||
id "org.jetbrains.kotlin.android" version "1.8.10" apply false
|
|
||||||
}
|
|
||||||
|
|
||||||
include ":app"
|
|
@ -1,72 +0,0 @@
|
|||||||
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
|
||||||
// found in the LICENSE file.
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter/services.dart';
|
|
||||||
|
|
||||||
Future<void> main() async {
|
|
||||||
WidgetsFlutterBinding.ensureInitialized();
|
|
||||||
const MethodChannel channel = MethodChannel('com.example.abstract_method_smoke_test');
|
|
||||||
await channel.invokeMethod<void>('show_keyboard');
|
|
||||||
runApp(const MyApp());
|
|
||||||
print('Test succeeded');
|
|
||||||
}
|
|
||||||
|
|
||||||
class MyApp extends StatelessWidget {
|
|
||||||
const MyApp({super.key});
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return MaterialApp(
|
|
||||||
title: 'Flutter Demo',
|
|
||||||
theme: ThemeData(
|
|
||||||
primarySwatch: Colors.blue,
|
|
||||||
),
|
|
||||||
home: const HomePage(),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class HomePage extends StatefulWidget {
|
|
||||||
const HomePage({super.key});
|
|
||||||
|
|
||||||
@override
|
|
||||||
State<HomePage> createState() => _HomePage();
|
|
||||||
}
|
|
||||||
|
|
||||||
class _HomePage extends State<HomePage> {
|
|
||||||
@override
|
|
||||||
void initState() {
|
|
||||||
super.initState();
|
|
||||||
|
|
||||||
// Trigger the second route.
|
|
||||||
// https://github.com/flutter/flutter/issues/40126
|
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) async {
|
|
||||||
Navigator.of(context).push(
|
|
||||||
MaterialPageRoute<void>(builder: (_) => const SecondPage()));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return const Scaffold();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class SecondPage extends StatelessWidget {
|
|
||||||
const SecondPage({super.key});
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return const Scaffold(
|
|
||||||
body: Column(
|
|
||||||
children: <Widget>[
|
|
||||||
Expanded(
|
|
||||||
child: AndroidView(viewType: 'simple')
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,22 +0,0 @@
|
|||||||
name: abstract_method_smoke_test
|
|
||||||
description: A new Flutter project.
|
|
||||||
|
|
||||||
version: 1.0.0+1
|
|
||||||
|
|
||||||
environment:
|
|
||||||
sdk: '>=3.2.0-0 <4.0.0'
|
|
||||||
|
|
||||||
dependencies:
|
|
||||||
flutter:
|
|
||||||
sdk: flutter
|
|
||||||
|
|
||||||
characters: 1.3.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
|
|
||||||
collection: 1.19.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
|
|
||||||
material_color_utilities: 0.11.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
|
|
||||||
meta: 1.15.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
|
|
||||||
vector_math: 2.1.4 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
|
|
||||||
|
|
||||||
flutter:
|
|
||||||
uses-material-design: true
|
|
||||||
|
|
||||||
# PUBSPEC CHECKSUM: 98c4
|
|
Loading…
x
Reference in New Issue
Block a user