Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
paths-ignore:
- "**.md"
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
.externalNativeBuild
.cxx
local.properties
/.kotlin
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.7.21'
kotlin_version = '2.2.0'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.3.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.21"
classpath "com.android.tools.build:gradle:8.11.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.0"
}
}

Expand All @@ -21,6 +21,6 @@ allprojects {
}
}

task clean(type: Delete) {
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
4 changes: 3 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion jitpack.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
jdk:
- openjdk8
before_install:
- yes | $ANDROID_HOME/tools/bin/sdkmanager "cmake;3.22.1" "ndk;26.2.11394342"
- yes | $ANDROID_HOME/tools/bin/sdkmanager "cmake;3.22.1" "ndk;28.2.13676358"
- sdk install java 17.0.11-oracle
- sdk use java 17.0.11-oracle
15 changes: 8 additions & 7 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@ plugins {
id 'maven-publish'
}

group = 'tachiyomiorg'
group = 'com.github.tachiyomiorg'

android {
compileSdkVersion 33
ndkVersion "26.2.11394342"
namespace 'tachiyomiorg.decoder'
compileSdkVersion 36
ndkVersion "28.2.13676358"

defaultConfig {
minSdkVersion 21
targetSdkVersion 30
targetSdkVersion 36
versionCode 1
versionName "1.0"
versionName "1.1"

consumerProguardFiles "consumer-rules.pro"
externalNativeBuild {
Expand Down Expand Up @@ -53,9 +54,9 @@ afterEvaluate {
// Creates a Maven publication called "release".
release(MavenPublication) {
from components.release
groupId = 'tachiyomiorg'
groupId = 'com.github.tachiyomiorg'
artifactId = 'image-decoder'
version = '1.0'
version = '1.1'
}
}
}
Expand Down
4 changes: 1 addition & 3 deletions library/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="tachiyomi.decoder">

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
</manifest>