소스 검색

Fix proguard file directive

-keep class com.github.aachartmodel.aainfographics.** { *; } throws unresolved class error with Android Studio 4, changing to ** -> * fixes this issue.
middicci 4 년 전
부모
커밋
32a8a8cb20
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -139,7 +139,7 @@ You're all set, enjoy!
 
 4. Finally add this line to your proguard file:
 ```kotlin
--keep class com.github.aachartmodel.aainfographics.** { *; }
+-keep class com.github.aachartmodel.aainfographics.* { *; }
 ```
 
 🌹🌹🌹Congratulations! Everything was done!!! You will get what you want!!!