Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bd56ccaa authored by dev-12's avatar dev-12
Browse files

Merge branch '3322-main-libupdate-09-sep-2025' into 'main'

changes for bumping gplayapi dependency

See merge request !587
parents 127d30fc 85feed4e
Loading
Loading
Loading
Loading
Loading
+6 −7
Original line number Diff line number Diff line
@@ -14,13 +14,12 @@ def versionMajor = 2
def versionMinor = 13
def versionPatch = 11

def getGitHash = { ->
    def stdOut = new ByteArrayOutputStream()
    exec {
def getGitHashProvider = providers.exec {
    commandLine 'git', 'log', '--pretty=format:%h', '-n', '1'
        standardOutput = stdOut
}
    return stdOut.toString().trim()

def getGitHash = {
    return getGitHashProvider.standardOutput.asText.get().trim()
}

def getDate = { ->
+1 −1
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ class ApplicationRepository @Inject constructor(
    suspend fun getOnDemandModule(
        packageName: String,
        moduleName: String,
        versionCode: Int,
        versionCode: Long,
        offerType: Int
    ): String? {
        return downloadInfoApi.getOnDemandModule(packageName, moduleName, versionCode, offerType)
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ data class Application(
    var reportId: Long = -1L,
    val icon_image_path: String = String(),
    val last_modified: String = String(),
    var latest_version_code: Int = -1,
    var latest_version_code: Long = -1,
    val latest_version_number: String = String(),
    val latest_downloaded_version: String = String(),
    val licence: String = String(),
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ interface DownloadInfoApi {
    suspend fun getOnDemandModule(
        packageName: String,
        moduleName: String,
        versionCode: Int,
        versionCode: Long,
        offerType: Int
    ): String?

+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ class DownloadInfoApiImpl @Inject constructor(
    override suspend fun getOnDemandModule(
        packageName: String,
        moduleName: String,
        versionCode: Int,
        versionCode: Long,
        offerType: Int
    ): String? {
        val result = handleNetworkResult {
Loading