File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
src/main/java/com/absinthe/rulesbundle Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services .gradle.org/distributions/gradle-7.6-bin.zip
3+ distributionUrl =https\://downloads .gradle.org/distributions/gradle-7.6-bin.zip
44networkTimeout =10000
55zipStoreBase =GRADLE_USER_HOME
66zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
22apply plugin : ' kotlin-android'
3+ apply plugin : ' kotlin-parcelize'
34
45apply from : " ${ rootDir.path} /gradle/publish.gradle"
56
Original file line number Diff line number Diff line change 11package com.absinthe.rulesbundle
22
3+ import android.os.Parcelable
34import androidx.annotation.DrawableRes
5+ import kotlinx.parcelize.Parcelize
46
7+ @Parcelize
58data class Rule (
69 val label : String ,
710 @DrawableRes val iconRes : Int ,
811 val descriptionUrl : String? ,
912 val regexName : String? ,
1013 val isSimpleColorIcon : Boolean
11- )
14+ ) : Parcelable
You can’t perform that action at this time.
0 commit comments