renderscript-intrinsics-replacement-toolkit icon indicating copy to clipboard operation
renderscript-intrinsics-replacement-toolkit copied to clipboard

Please make the library available through (Google) Maven

Open hvisser opened this issue 4 years ago • 10 comments

There's currently no easy way to use this project, it would be great if a binary could be hosted on maven.google.com or Maven Central, which is common for most Android libraries.

hvisser avatar Jun 08 '21 18:06 hvisser

That's a good idea. We're considering doing so, if there's enough interest.

jeanlucbr avatar Jun 08 '21 20:06 jeanlucbr

It's a bit of chicken and egg problem, as Renderscript is being deprecated and this library presented as a migration option, it would be logical to publish it in such a way that people can do that in an easy fashion IMHO. But thanks for considering!

hvisser avatar Jun 09 '21 09:06 hvisser

Any news about this?

dragossusi avatar Jul 20 '21 11:07 dragossusi

totally agree!

chachako avatar Jul 23 '21 03:07 chachako

Yeah, that would be very nice indeed!

HappyGnom avatar Sep 21 '21 09:09 HappyGnom

There is an easy option to use it now via jitpack. But still will be better to upload it to Maven.

kiryltkach avatar Oct 27 '21 15:10 kiryltkach

Please add this library to Google Maven, or at least write an instruction how to use it. The jitpack trick doesn't work. It still does not recognize the package com.google.android.renderscript ;-(

syrop avatar Nov 29 '21 13:11 syrop

Not having renderscript-intrinsics-replacement-toolkit available via Google Maven is a major roadblock when integrating this library into a larger project. I'm reluctant to incur the complexity cost of the initial integration and the consequent maintenance (when upgrading the library) to my team.

doganov avatar Mar 03 '22 11:03 doganov

I have forked to https://github.com/shenguojun/renderscript-intrinsics-replacement-toolkit and added a jitpack.yml file to fix jitpack compile error. For those need to use with maven, add the following code:

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}
	dependencies {
	        implementation 'com.github.shenguojun:renderscript-intrinsics-replacement-toolkit:main-SNAPSHOT'
	}

shenguojun avatar Jul 15 '22 08:07 shenguojun

still having build errors. Hasn't this been added to Mavent yet?

Abdelalim-dev avatar Aug 19 '24 15:08 Abdelalim-dev