본문 바로가기
Android Studio

[Android Studio] 오픈소스 라이브러리를 안드로이드 스튜디오에 적용하기

by coding_su 2023. 1. 26.

📝오픈소스 라이브러리를 안드로이드 스튜디오에 적용하기

※ 사용한 애니메이션 (https://github.com/daimajia/AndroidViewAnimations)

모듈의 빌드파일(build.gradle)을 열어서 dependencies { } 안에 사용할 라이브러리를 입력해주면된다

 

dependencies 맨 아래에 입력해줬다

dependencies {

    implementation 'androidx.appcompat:appcompat:1.4.1'
    implementation 'com.google.android.material:material:1.5.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

    implementation 'com.daimajia.androidanimations:library:2.4@aar'
}

 

라이브러리 설치 후 Activity에 사용한다 사용법은 해당 오픈소스 라이브러리 참고해서 필요한 코드를 입력

YoYo.with(Techniques.Shake).duration(400).repeat(0).playOn(imgDice1);
YoYo.with(Techniques.Shake).duration(400).repeat(0).playOn(imgDice2);

댓글