format-common: add baseline module

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-04-16 21:08:51 +05:30
parent d27ba408d8
commit 931cc052a8
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
5 changed files with 26 additions and 2 deletions

View file

@ -14,6 +14,7 @@
<option value="$PROJECT_DIR$/app" />
<option value="$PROJECT_DIR$/autofill-parser" />
<option value="$PROJECT_DIR$/buildSrc" />
<option value="$PROJECT_DIR$/format-common" />
<option value="$PROJECT_DIR$/openpgp-ktx" />
</set>
</option>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="KotlinScriptingSettings">
<option name="suppressDefinitionsCheck" value="true" />
</component>
</project>

View file

@ -0,0 +1,8 @@
/*
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
* SPDX-License-Identifier: GPL-3.0-only
*/
plugins {
kotlin("jvm")
`aps-plugin`
}

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
~ SPDX-License-Identifier: GPL-3.0-only
-->
<manifest package="dev.msfjarvis.aps.format_common" />

View file

@ -2,15 +2,18 @@
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
* SPDX-License-Identifier: GPL-3.0-only
*/
include(":autofill-parser")
// Modules
include(":app")
include(":autofill-parser")
include(":format-common")
include(":openpgp-ktx")
// Experimental features
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
enableFeaturePreview("VERSION_CATALOGS")
// Plugin repositories
pluginManagement {
repositories {
gradlePluginPortal()