mirror of
https://github.com/T8RIN/ImageToolbox.git
synced 2025-05-21 15:36:26 +08:00
gradient_maker module created
This commit is contained in:
1
feature/gradient-maker/.gitignore
vendored
Normal file
1
feature/gradient-maker/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/build
|
25
feature/gradient-maker/build.gradle.kts
Normal file
25
feature/gradient-maker/build.gradle.kts
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
/*
|
||||||
|
* ImageToolbox is an image editor for android
|
||||||
|
* Copyright (c) 2024 T8RIN (Malik Mukhametzyanov)
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the Apache License
|
||||||
|
* along with this program. If not, see <http://www.apache.org/licenses/LICENSE-2.0>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
alias(libs.plugins.image.toolbox.library)
|
||||||
|
alias(libs.plugins.image.toolbox.feature)
|
||||||
|
alias(libs.plugins.image.toolbox.hilt)
|
||||||
|
alias(libs.plugins.image.toolbox.compose)
|
||||||
|
}
|
||||||
|
|
||||||
|
android.namespace = "ru.tech.imageresizershrinker.feature.gradient_maker"
|
20
feature/gradient-maker/src/main/AndroidManifest.xml
Normal file
20
feature/gradient-maker/src/main/AndroidManifest.xml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?><!--
|
||||||
|
~ ImageToolbox is an image editor for android
|
||||||
|
~ Copyright (c) 2024 T8RIN (Malik Mukhametzyanov)
|
||||||
|
~
|
||||||
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
~ you may not use this file except in compliance with the License.
|
||||||
|
~
|
||||||
|
~ 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.
|
||||||
|
~
|
||||||
|
~ You should have received a copy of the Apache License
|
||||||
|
~ along with this program. If not, see <http://www.apache.org/licenses/LICENSE-2.0>.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<manifest>
|
||||||
|
|
||||||
|
</manifest>
|
@ -17,6 +17,9 @@
|
|||||||
|
|
||||||
@file:Suppress("UnstableApiUsage")
|
@file:Suppress("UnstableApiUsage")
|
||||||
|
|
||||||
|
include(":feature:gradient-maker")
|
||||||
|
|
||||||
|
|
||||||
include(":core:settings")
|
include(":core:settings")
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user