notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

build.gradle (531B)


      1 plugins {
      2     id "com.android.application"
      3 }
      4 
      5 android {
      6     namespace "com.damus.notedeck"
      7     compileSdk 31
      8 
      9     defaultConfig {
     10         minSdk 29
     11         targetSdk 33
     12         versionCode 1
     13         versionName "1"
     14     }
     15 
     16     buildTypes {
     17         debug
     18     }
     19     compileOptions {
     20         sourceCompatibility JavaVersion.VERSION_1_8
     21         targetCompatibility JavaVersion.VERSION_1_8
     22     }
     23 }
     24 
     25 dependencies {
     26     implementation "com.google.android.material:material:1.5.0"
     27     implementation "androidx.games:games-activity:2.0.2"
     28 }