Skip to content

Commit

Permalink
FDroid: Add rootProject.name in gradle.properties & move icon.png (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
lolo-io committed Oct 6, 2024
1 parent 83eddaf commit 2958edd
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
/captures
.externalNativeBuild
keystore.jks
./**/keykeystore.jks
Binary file removed app/keystore.jks
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fun OneListTheme(
MaterialTheme(
colorScheme = colorScheme,
content = content,
typography = typography(colorScheme),
typography = typography(),
shapes = Shapes
)
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.lolo.io.onelist.core.designsystem

import androidx.compose.material3.ColorScheme
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Typography
import androidx.compose.runtime.Composable
Expand All @@ -12,7 +11,7 @@ import androidx.compose.ui.text.style.TextDecoration
import androidx.compose.ui.unit.sp

@Composable
fun typography(colorScheme: ColorScheme) = Typography(
fun typography() = Typography(
bodyLarge = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
Expand Down
File renamed without changes
4 changes: 4 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ android.nonTransitiveRClass=true
android.useAndroidX=true
org.gradle.jvmargs=-Xmx1536m

# FDroid uses applicationId (com.lolo.io.onelist) as repo dire name & gradle doesn't like it
# this fixes buid on FDroid
rootProject.name="onelist"

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
Expand Down

0 comments on commit 2958edd

Please sign in to comment.