Skip to content

Commit 0b11662

Browse files
committed
Update copyright and remove testing deps
1 parent b66a52e commit 0b11662

File tree

13 files changed

+12
-30
lines changed

13 files changed

+12
-30
lines changed

WebView/WebkitWebView/app/build.gradle.kts

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 The Android Open Source Project
2+
* Copyright 2025 The Android Open Source Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -100,10 +100,5 @@ dependencies {
100100
implementation(libs.compose.tooling.preview)
101101
implementation(libs.compose.material)
102102
implementation(libs.webkit)
103-
testImplementation(libs.junit)
104-
androidTestImplementation(libs.junit)
105-
androidTestImplementation(libs.espresso.core)
106103
androidTestImplementation(platform(libs.compose.bom))
107-
debugImplementation(libs.compose.ui.tooling)
108-
debugImplementation(libs.compose.ui.test.manifest)
109104
}

WebView/WebkitWebView/app/src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
~ Copyright 2024 Google LLC
3+
~ Copyright 2025 Google LLC
44
~
55
~ Licensed under the Apache License, Version 2.0 (the "License");
66
~ you may not use this file except in compliance with the License.

WebView/WebkitWebView/app/src/main/java/com/google/webkit/webviewsample/MainActivity.kt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 The Android Open Source Project
2+
* Copyright 2025 The Android Open Source Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,7 +16,6 @@
1616
package com.google.webkit.webviewsample
1717

1818
import android.os.Bundle
19-
import android.util.Log
2019
import android.webkit.WebView
2120
import androidx.activity.ComponentActivity
2221
import androidx.activity.compose.setContent

WebView/WebkitWebView/app/src/main/java/com/google/webkit/webviewsample/WebViewClientImpl.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 The Android Open Source Project
2+
* Copyright 2025 The Android Open Source Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

WebView/WebkitWebView/app/src/main/java/com/google/webkit/webviewsample/theme/Color.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 The Android Open Source Project
2+
* Copyright 2025 The Android Open Source Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

WebView/WebkitWebView/app/src/main/java/com/google/webkit/webviewsample/theme/Shape.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 The Android Open Source Project
2+
* Copyright 2025 The Android Open Source Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

WebView/WebkitWebView/app/src/main/java/com/google/webkit/webviewsample/theme/Theme.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 The Android Open Source Project
2+
* Copyright 2025 The Android Open Source Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

WebView/WebkitWebView/app/src/main/java/com/google/webkit/webviewsample/theme/Type.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 The Android Open Source Project
2+
* Copyright 2025 The Android Open Source Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

WebView/WebkitWebView/gradle/libs.versions.toml

-12
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@ webkit = "1.12.1"
1111
# BOM Versions
1212
composeBom = "2024.06.00"
1313

14-
# Testing Versions
15-
jUnit = "4.13.2"
16-
espressoCore = "3.5.1"
17-
18-
1914
[libraries]
2015
google-services-plugin = { group = "com.google.gms", name = "google-services", version.ref = "googleServicesPlugin" }
2116
activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activity" }
@@ -32,13 +27,6 @@ compose-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
3227
compose-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
3328
compose-material = { group = "androidx.compose.material", name = "material" }
3429

35-
# Testing
36-
junit = { group = "junit", name = "junit", version.ref = "jUnit"}
37-
espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
38-
compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
39-
compose-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
40-
41-
4230
[plugins]
4331
android-application = { id = "com.android.application", version.ref = "androidPlugin" }
4432
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }

WebView/WebkitWebView/init.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 The Android Open Source Project
2+
* Copyright 2025 The Android Open Source Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

WebView/WebkitWebView/keystore.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2023 Google LLC
2+
# Copyright 2025 Google LLC
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

WebView/WebkitWebView/spotless/copyright.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 The Android Open Source Project
2+
* Copyright $YEAR The Android Open Source Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

WebView/WebkitWebView/spotless/copyright.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024 The Android Open Source Project
2+
* Copyright $YEAR The Android Open Source Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)