From a271d5fee20c2ce493cd8553c0705d9777bec1ac Mon Sep 17 00:00:00 2001 From: "Hector A. Narvaez" Date: Mon, 17 Jul 2023 15:14:20 -0500 Subject: [PATCH] Add license header to sample app classes --- .../android/storage/sample/AndroidApplication.kt | 16 ++++++++++++++++ .../storage/sample/di/CoroutinesModule.kt | 16 ++++++++++++++++ .../android/storage/sample/di/SingletonModule.kt | 16 ++++++++++++++++ .../storage/sample/domain/model/FileType.kt | 16 ++++++++++++++++ .../storage/sample/presentation/BaseFragment.kt | 16 ++++++++++++++++ .../storage/sample/presentation/BaseViewModel.kt | 16 ++++++++++++++++ .../storage/sample/presentation/ViewEvent.kt | 16 ++++++++++++++++ .../storage/sample/presentation/ViewState.kt | 16 ++++++++++++++++ .../presentation/file_viewer/FileAdapter.kt | 16 ++++++++++++++++ .../file_viewer/FileViewerFragment.kt | 16 ++++++++++++++++ .../file_viewer/FileViewerViewEvent.kt | 16 ++++++++++++++++ .../file_viewer/FileViewerViewModel.kt | 16 ++++++++++++++++ .../file_viewer/FileViewerViewState.kt | 16 ++++++++++++++++ .../sample/presentation/login/LoginFragment.kt | 16 ++++++++++++++++ .../sample/presentation/login/LoginViewEvent.kt | 16 ++++++++++++++++ .../sample/presentation/login/LoginViewModel.kt | 16 ++++++++++++++++ .../sample/presentation/login/LoginViewState.kt | 16 ++++++++++++++++ .../presentation/main_activity/MainActivity.kt | 16 ++++++++++++++++ .../sample/presentation/util/ViewUtils.kt | 16 ++++++++++++++++ .../omh/android/storage/sample/util/Constants.kt | 16 ++++++++++++++++ .../android/storage/sample/util/Extensions.kt | 16 ++++++++++++++++ 21 files changed, 336 insertions(+) diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/AndroidApplication.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/AndroidApplication.kt index d367af3d..3407ad33 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/AndroidApplication.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/AndroidApplication.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample import android.app.Application diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/di/CoroutinesModule.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/di/CoroutinesModule.kt index c133cab3..22f9526e 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/di/CoroutinesModule.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/di/CoroutinesModule.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.di import dagger.Module diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/di/SingletonModule.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/di/SingletonModule.kt index da68c512..facb340c 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/di/SingletonModule.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/di/SingletonModule.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.di import android.content.Context diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/domain/model/FileType.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/domain/model/FileType.kt index 7aff9cb6..3528ac14 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/domain/model/FileType.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/domain/model/FileType.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.domain.model import com.omh.android.storage.api.domain.model.OmhFileType diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/BaseFragment.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/BaseFragment.kt index 2948ad8e..8ef62055 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/BaseFragment.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/BaseFragment.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation import android.os.Bundle diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/BaseViewModel.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/BaseViewModel.kt index 3a3f83a2..6a25bcde 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/BaseViewModel.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/BaseViewModel.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation import android.util.Log diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/ViewEvent.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/ViewEvent.kt index 6c0468e4..5d85b35e 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/ViewEvent.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/ViewEvent.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation interface ViewEvent { diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/ViewState.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/ViewState.kt index bf60cf79..29598771 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/ViewState.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/ViewState.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation interface ViewState { diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileAdapter.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileAdapter.kt index 9ee757ef..d903999d 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileAdapter.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileAdapter.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation.file_viewer import android.content.Context diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerFragment.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerFragment.kt index 2fb61e75..fe5980dd 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerFragment.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerFragment.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation.file_viewer import android.Manifest diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerViewEvent.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerViewEvent.kt index 8119702a..13981593 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerViewEvent.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerViewEvent.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation.file_viewer import android.content.Context diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerViewModel.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerViewModel.kt index 78521f31..63893da9 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerViewModel.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerViewModel.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation.file_viewer import android.content.Context diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerViewState.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerViewState.kt index 6cadbe44..d04d96eb 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerViewState.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/file_viewer/FileViewerViewState.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation.file_viewer import com.omh.android.storage.api.domain.model.OmhFile diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginFragment.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginFragment.kt index 28554e77..c6339b81 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginFragment.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginFragment.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation.login import android.content.Intent diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginViewEvent.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginViewEvent.kt index 4d5e86ab..e691a709 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginViewEvent.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginViewEvent.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation.login import com.omh.android.storage.sample.presentation.ViewEvent diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginViewModel.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginViewModel.kt index 2903dafc..8ee8beba 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginViewModel.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginViewModel.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation.login import android.content.Intent diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginViewState.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginViewState.kt index b8026440..910bc23e 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginViewState.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/login/LoginViewState.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation.login import com.omh.android.storage.sample.presentation.ViewState diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/main_activity/MainActivity.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/main_activity/MainActivity.kt index 2ba921b5..9d2b45d8 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/main_activity/MainActivity.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/main_activity/MainActivity.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation.main_activity import android.os.Bundle diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/util/ViewUtils.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/util/ViewUtils.kt index 4fd29938..78e20113 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/util/ViewUtils.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/presentation/util/ViewUtils.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.presentation.util import android.view.View diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/util/Constants.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/util/Constants.kt index c3c29303..d1fdfbf9 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/util/Constants.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/util/Constants.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.util const val TAG_VIEW_UPDATE = "View Update" diff --git a/storage-sample/src/main/java/com/omh/android/storage/sample/util/Extensions.kt b/storage-sample/src/main/java/com/omh/android/storage/sample/util/Extensions.kt index 6c7f2073..816c86ef 100644 --- a/storage-sample/src/main/java/com/omh/android/storage/sample/util/Extensions.kt +++ b/storage-sample/src/main/java/com/omh/android/storage/sample/util/Extensions.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Open Mobile Hub + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.omh.android.storage.sample.util import com.omh.android.storage.api.domain.model.OmhFile