-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renames Dependencies to ProjectConfiguration
- Loading branch information
Showing
7 changed files
with
60 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import org.gradle.api.JavaVersion | ||
|
||
/** | ||
* @author Vivien Mahe | ||
* @since 23/07/2022 | ||
*/ | ||
|
||
object ProjectConfiguration { | ||
|
||
// TODO Rename MyProject to your project name | ||
object MyProject { | ||
const val packageName = "com.tweener.changehere" // TODO Change this | ||
const val versionName = "1.0" | ||
|
||
object Android { | ||
const val applicationId = packageName | ||
const val namespace = "$packageName.android" | ||
const val compileSDK = 34 | ||
const val targetSDK = compileSDK | ||
const val minSDK = 24 | ||
const val versionCode = 1 | ||
} | ||
} | ||
|
||
object Compiler { | ||
const val jvmTarget = "17" | ||
val javaCompatibility = JavaVersion.VERSION_17 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters