File tree Expand file tree Collapse file tree 8 files changed +12
-21
lines changed
transformations-face-detection Expand file tree Collapse file tree 8 files changed +12
-21
lines changed Original file line number Diff line number Diff line change @@ -2,20 +2,14 @@ buildscript {
22 repositories {
33 google()
44 mavenCentral()
5- maven(" https://plugins.gradle.org/m2/" )
65 }
76 dependencies {
8- classpath(" com.android.tools.build: gradle:7.2.0 " )
9- classpath(" org.jlleitschuh.gradle:ktlint- gradle:10.3.0 " )
7+ classpath(kotlin( " gradle-plugin " , version = " 1.9.20 " ) )
8+ classpath(" com.android.tools.build: gradle:8.7.2 " )
109 classpath(" com.vanniktech:gradle-maven-publish-plugin:0.19.0" )
11- classpath(kotlin(" gradle-plugin" , version = " 1.6.21" ))
1210 }
1311}
1412
15- plugins {
16- id(" com.github.ben-manes.versions" ) version " 0.42.0"
17- }
18-
1913allprojects {
2014 repositories {
2115 google()
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-7.4 .2-all.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.10 .2-all.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ import coiltransformations.targetSdk
55plugins {
66 id(" com.android.application" )
77 id(" kotlin-android" )
8- id(" org.jlleitschuh.gradle.ktlint" )
98}
109
1110android {
11+ namespace = " com.commit451.coiltransformations.sample"
1212 compileSdk = project.targetSdk
1313 defaultConfig {
1414 applicationId = " com.commit451.coiltransformations.sample"
Original file line number Diff line number Diff line change 11rootProject.buildFileName = " build.gradle.kts"
22include(
3- " :transformations" ,
4- " :transformations-face-detection" ,
5- " :transformations-gpu" ,
6- " :sample"
3+ " :transformations" ,
4+ " :transformations-face-detection" ,
5+ " :transformations-gpu" ,
6+ " :sample"
77)
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ import coiltransformations.targetSdk
55plugins {
66 id(" com.android.library" )
77 id(" kotlin-android" )
8- id(" org.jlleitschuh.gradle.ktlint" )
98}
109
1110apply (from = " ../publish.gradle" )
1211
1312android {
13+ namespace = " com.commit451.coiltransformations.facedetection"
1414 compileSdk = project.targetSdk
1515 defaultConfig {
1616 minSdk = project.minSdk
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
2- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3- package =" com.commit451.coiltransformations.facedetection" >
4-
5- </manifest >
2+ <manifest package =" com.commit451.coiltransformations.facedetection" />
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ import coiltransformations.targetSdk
55plugins {
66 id(" com.android.library" )
77 id(" kotlin-android" )
8- id(" org.jlleitschuh.gradle.ktlint" )
98}
109
1110apply (from = " ../publish.gradle" )
1211
1312android {
13+ namespace = " com.commit451.coiltransformations.gpu"
1414 compileSdk = project.targetSdk
1515 defaultConfig {
1616 minSdk = project.minSdk
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ import coiltransformations.targetSdk
55plugins {
66 id(" com.android.library" )
77 id(" kotlin-android" )
8- id(" org.jlleitschuh.gradle.ktlint" )
98}
109
1110apply (from = " ../publish.gradle" )
1211
1312android {
13+ namespace = " com.commit451.coiltransformations"
1414 compileSdk = project.targetSdk
1515 defaultConfig {
1616 minSdk = project.minSdk
You can’t perform that action at this time.
0 commit comments