Skip to content

Commit 69474b8

Browse files
authored
Merge branch 'contentauth:main' into feature/version-auto-update
2 parents 9036834 + 90a9ec2 commit 69474b8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+652
-0
lines changed

build.gradle.kts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
This file is licensed to you under the Apache License, Version 2.0
3+
(http://www.apache.org/licenses/LICENSE-2.0) or the MIT license
4+
(http://opensource.org/licenses/MIT), at your option.
5+
6+
Unless required by applicable law or agreed to in writing, this software is
7+
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF
8+
ANY KIND, either express or implied. See the LICENSE-MIT and LICENSE-APACHE
9+
files for the specific language governing permissions and limitations under
10+
each license.
11+
*/
12+
113
// Top-level build file where you can add configuration options common to all sub-projects/modules.
214
plugins {
315
alias(libs.plugins.android.application) apply false

example-app/app/build.gradle.kts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
This file is licensed to you under the Apache License, Version 2.0
3+
(http://www.apache.org/licenses/LICENSE-2.0) or the MIT license
4+
(http://opensource.org/licenses/MIT), at your option.
5+
6+
Unless required by applicable law or agreed to in writing, this software is
7+
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF
8+
ANY KIND, either express or implied. See the LICENSE-MIT and LICENSE-APACHE
9+
files for the specific language governing permissions and limitations under
10+
each license.
11+
*/
12+
113
plugins {
214
alias(libs.plugins.android.application)
315
alias(libs.plugins.kotlin.android)

example-app/app/src/main/kotlin/org/contentauth/c2pa/exampleapp/MainActivity.kt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
This file is licensed to you under the Apache License, Version 2.0
3+
(http://www.apache.org/licenses/LICENSE-2.0) or the MIT license
4+
(http://opensource.org/licenses/MIT), at your option.
5+
6+
Unless required by applicable law or agreed to in writing, this software is
7+
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF
8+
ANY KIND, either express or implied. See the LICENSE-MIT and LICENSE-APACHE
9+
files for the specific language governing permissions and limitations under
10+
each license.
11+
*/
12+
113
package org.contentauth.c2pa.exampleapp
214

315
import android.os.Bundle

example-app/app/src/main/kotlin/org/contentauth/c2pa/exampleapp/data/C2PAManager.kt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
This file is licensed to you under the Apache License, Version 2.0
3+
(http://www.apache.org/licenses/LICENSE-2.0) or the MIT license
4+
(http://opensource.org/licenses/MIT), at your option.
5+
6+
Unless required by applicable law or agreed to in writing, this software is
7+
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF
8+
ANY KIND, either express or implied. See the LICENSE-MIT and LICENSE-APACHE
9+
files for the specific language governing permissions and limitations under
10+
each license.
11+
*/
12+
113
package org.contentauth.c2pa.exampleapp.data
214

315
import android.content.Context

example-app/app/src/main/kotlin/org/contentauth/c2pa/exampleapp/data/PreferencesManager.kt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
This file is licensed to you under the Apache License, Version 2.0
3+
(http://www.apache.org/licenses/LICENSE-2.0) or the MIT license
4+
(http://opensource.org/licenses/MIT), at your option.
5+
6+
Unless required by applicable law or agreed to in writing, this software is
7+
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF
8+
ANY KIND, either express or implied. See the LICENSE-MIT and LICENSE-APACHE
9+
files for the specific language governing permissions and limitations under
10+
each license.
11+
*/
12+
113
package org.contentauth.c2pa.exampleapp.data
214

315
import android.content.Context

example-app/app/src/main/kotlin/org/contentauth/c2pa/exampleapp/model/SigningMode.kt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
This file is licensed to you under the Apache License, Version 2.0
3+
(http://www.apache.org/licenses/LICENSE-2.0) or the MIT license
4+
(http://opensource.org/licenses/MIT), at your option.
5+
6+
Unless required by applicable law or agreed to in writing, this software is
7+
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF
8+
ANY KIND, either express or implied. See the LICENSE-MIT and LICENSE-APACHE
9+
files for the specific language governing permissions and limitations under
10+
each license.
11+
*/
12+
113
package org.contentauth.c2pa.exampleapp.model
214

315
enum class SigningMode(val displayName: String, val description: String, val requiresConfiguration: Boolean = false) {

example-app/app/src/main/kotlin/org/contentauth/c2pa/exampleapp/ui/camera/CameraScreen.kt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
This file is licensed to you under the Apache License, Version 2.0
3+
(http://www.apache.org/licenses/LICENSE-2.0) or the MIT license
4+
(http://opensource.org/licenses/MIT), at your option.
5+
6+
Unless required by applicable law or agreed to in writing, this software is
7+
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF
8+
ANY KIND, either express or implied. See the LICENSE-MIT and LICENSE-APACHE
9+
files for the specific language governing permissions and limitations under
10+
each license.
11+
*/
12+
113
package org.contentauth.c2pa.exampleapp.ui.camera
214

315
import android.Manifest

example-app/app/src/main/kotlin/org/contentauth/c2pa/exampleapp/ui/gallery/GalleryScreen.kt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
This file is licensed to you under the Apache License, Version 2.0
3+
(http://www.apache.org/licenses/LICENSE-2.0) or the MIT license
4+
(http://opensource.org/licenses/MIT), at your option.
5+
6+
Unless required by applicable law or agreed to in writing, this software is
7+
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF
8+
ANY KIND, either express or implied. See the LICENSE-MIT and LICENSE-APACHE
9+
files for the specific language governing permissions and limitations under
10+
each license.
11+
*/
12+
113
package org.contentauth.c2pa.exampleapp.ui.gallery
214

315
import androidx.compose.foundation.clickable

example-app/app/src/main/kotlin/org/contentauth/c2pa/exampleapp/ui/settings/SettingsScreen.kt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
This file is licensed to you under the Apache License, Version 2.0
3+
(http://www.apache.org/licenses/LICENSE-2.0) or the MIT license
4+
(http://opensource.org/licenses/MIT), at your option.
5+
6+
Unless required by applicable law or agreed to in writing, this software is
7+
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF
8+
ANY KIND, either express or implied. See the LICENSE-MIT and LICENSE-APACHE
9+
files for the specific language governing permissions and limitations under
10+
each license.
11+
*/
12+
113
package org.contentauth.c2pa.exampleapp.ui.settings
214

315
import android.net.Uri

example-app/app/src/main/kotlin/org/contentauth/c2pa/exampleapp/ui/theme/Color.kt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
This file is licensed to you under the Apache License, Version 2.0
3+
(http://www.apache.org/licenses/LICENSE-2.0) or the MIT license
4+
(http://opensource.org/licenses/MIT), at your option.
5+
6+
Unless required by applicable law or agreed to in writing, this software is
7+
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF
8+
ANY KIND, either express or implied. See the LICENSE-MIT and LICENSE-APACHE
9+
files for the specific language governing permissions and limitations under
10+
each license.
11+
*/
12+
113
package org.contentauth.c2pa.exampleapp.ui.theme
214

315
import androidx.compose.ui.graphics.Color

0 commit comments

Comments
 (0)