Skip to content

Commit

Permalink
refactor/buildSrc module name correction (#558)
Browse files Browse the repository at this point in the history
* Correct buildSrc module module name type

* Update version.json

* Remove dangling import
  • Loading branch information
wax911 authored Apr 4, 2023
1 parent 276c653 commit 2569694
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/.meta/version.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"code": 1010000000,
"migration": false,
"minSdk": 17,
"minSdk": 21,
"releaseNotes": "",
"version": "1.10.0",
"appId": "com.mxt.anitrend"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
@file:Suppress("UnstableApiUsage")

package com.mxt.anitrend.buildsrc.componets
package com.mxt.anitrend.buildsrc.components

import com.android.build.gradle.BaseExtension
import com.android.build.gradle.internal.dsl.BaseAppModuleExtension
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mxt.anitrend.buildsrc.componets
package com.mxt.anitrend.buildsrc.components

import com.mxt.anitrend.buildsrc.extensions.baseExtension
import org.gradle.api.Project
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

package com.mxt.anitrend.buildsrc.componets
package com.mxt.anitrend.buildsrc.components

import org.gradle.api.Project
import com.mxt.anitrend.buildsrc.extensions.*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mxt.anitrend.buildsrc.componets
package com.mxt.anitrend.buildsrc.components

import org.gradle.api.Project
import java.io.File
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package com.mxt.anitrend.buildsrc.extensions

import com.android.build.gradle.BaseExtension
import com.android.build.gradle.internal.dsl.BaseAppModuleExtension
import com.mxt.anitrend.buildsrc.componets.PropertiesReader
import com.mxt.anitrend.buildsrc.components.PropertiesReader
import org.gradle.api.Project
import org.gradle.api.artifacts.VersionCatalogsExtension
import org.gradle.kotlin.dsl.getByType
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@

package com.mxt.anitrend.buildsrc.plugin

import com.mxt.anitrend.buildsrc.components.applyAndroidConfiguration
import com.mxt.anitrend.buildsrc.components.configureAdditionalPlugins
import com.mxt.anitrend.buildsrc.components.configureDependencies
import com.mxt.anitrend.buildsrc.components.configurePlugins
import org.gradle.api.Plugin
import org.gradle.api.Project
import com.mxt.anitrend.buildsrc.componets.*

open class CorePlugin : Plugin<Project> {

Expand Down

0 comments on commit 2569694

Please sign in to comment.