TarCV / aar2jar

Gradle plugin which will help you to add Aar dependencies into your java|kotlin modules (This Fork adds Gradle 8 support)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aar2jar

Gradle plugin which will help you to add Aar dependencies into your java|kotlin modules

How to use: add following lines in your module's build.gradle file

plugins {
	id 'kotlin'
	id 'com.stepango.aar2jar' version “0.6” // <- this one
}


dependencies {
	implementation Libs.kotlin
	compileOnlyAar "com.android.support:support-annotations:28.0.0" // <- Use any AAR dependencies
	// or
	implementationAar "com.android.support:support-annotations:28.0.0" // <- Use any AAR dependencies
	// or
	testCompileOnlyAar "com.android.support:support-annotations:28.0.0" // <- Use any AAR dependencies
	// or
	testImplementationAar "com.android.support:support-annotations:28.0.0" // <- Use any AAR dependencies
}

If using compileOnlyAar dependencies - make sure you have this dependency in any of your other modules build.gradle

implementation "com.android.support:support-annotations:28.0.0"
//or 
runtimeOnly "com.android.support:support-annotations:28.0.0"

Presentation Mobuis 2019 RUS

Gradle plugin page

About

Gradle plugin which will help you to add Aar dependencies into your java|kotlin modules (This Fork adds Gradle 8 support)


Languages

Language:Kotlin 100.0%