Uncodin / bypass

Skip the HTML, Bypass takes markdown and renders it directly on Android and iOS.
http://uncodin.github.com/bypass/
Apache License 2.0
1.52k stars 193 forks source link

Generate aar package #151

Open Giorgi opened 10 years ago

Giorgi commented 10 years ago

Gradle does not support apklib dependencies and instead uses aar files. Can you also generate and publish the library in aar format so that we can add dependency from gradle?

andrewgiang commented 10 years ago

This is a similar request to issue #138 that I requested a while back.

mingfai commented 10 years ago

Android Maven Plugin can generate both aar and apklib with a configuration similar to the following:

<plugin>
                <groupId>com.jayway.maven.plugins.android.generation2</groupId>
                <artifactId>android-maven-plugin</artifactId>
                <version>3.8.1</version>
                <extensions>true</extensions>
                <executions>
                    <execution>
                        <id>create-all-formats</id>
                        <phase>package</phase>
                        <goals>
                            <goal>aar</goal>
                            <goal>apklib</goal>
                        </goals>
                    </execution>
                </executions>      
            </plugin>
robinpaulson commented 9 years ago

Hi folks, there's a few people keen to get this included in the F-Droid repository (a free software alternative to Google Play) via the Gitlab for Android client [1]. Problem is it can't be done until this issue is addressed. Is there anyone able and willing to fix it? Cheers, Robin

[1] https://f-droid.org/forums/topic/gitlab-for-android/

Jawnnypoo commented 9 years ago

For your convenience, I have compiled Bypass into a gradle compatible library here: https://github.com/Commit451/bypasses

FabianFrank commented 8 years ago

Thank you @Jawnnypoo this is amazing!