Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for LAUNCHER (0.59 sec)

  1. android-test-app/src/main/AndroidManifest.xml

            <category android:name="android.intent.category.LAUNCHER" />
          </intent-filter>
        </activity>
    
        <activity
          android:name=".MainActivity2"
          android:process=":activity2"
          android:exported="true">
          <intent-filter>
            <action android:name="android.intent.action.MAIN" />
    
            <category android:name="android.intent.category.LAUNCHER" />
          </intent-filter>
        </activity>
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Aug 19 08:10:39 UTC 2025
    - 992 bytes
    - Viewed (0)
  2. gradle/libs.versions.toml

    #noinspection UnusedVersionCatalogEntry
    junit-platform-console = { module = "org.junit.platform:junit-platform-console", version.ref = "junit-platform" }
    #noinspection UnusedVersionCatalogEntry
    junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher", version.ref = "junit-platform" }
    junit-vintage-engine = { module = "org.junit.vintage:junit-vintage-engine", version.ref = "org-junit-jupiter" }
    #noinspection NewerVersionAvailable
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Aug 31 17:41:20 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  3. kotlin-js-store/yarn.lock

      optionalDependencies:
        graceful-fs "^4.1.6"
    
    karma-chrome-launcher@3.2.0:
      version "3.2.0"
      resolved "https://registry.yarnpkg.com/karma-chrome-launcher/-/karma-chrome-launcher-3.2.0.tgz#eb9c95024f2d6dfbb3748d3415ac9b381906b9a9"
      integrity sha512-rE9RkUPI7I9mAxByQWkGJFXfFD6lE4gC5nPuZdobf/QdTEJI6EU4yIay/cfU/xV4ZxlM5JiTv7zWYgA64NpS5Q==
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  4. build.gradle.kts

          testRuntimeOnly(rootProject.libs.junit.jupiter.engine)
          testRuntimeOnly(rootProject.libs.junit.vintage.engine)
          testRuntimeOnly(rootProject.libs.junit.platform.launcher)
        }
      }
    
      tasks.withType<Test> {
        useJUnitPlatform()
        jvmArgs(
          "-Dokhttp.platform=$platform",
        )
    
        if (platform == "loom") {
          jvmArgs(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
Back to top