Skip to content
Snippets Groups Projects
Select Git revision
  • 1ecc31e477ebfeeed9b53a439154048f77a047a7
  • main default protected
  • wip
  • ChenZhangg-Modify_GRADLE_1
  • jetpack-compose-rewrite
  • demo-jump-in-history
  • attachments
  • 1.7.0 protected
  • 1.6.2 protected
  • 1.6.1 protected
  • 1.6.0 protected
  • 1.5.3 protected
  • 1.5.2 protected
  • 1.5.1 protected
  • 1.5.0 protected
  • 1.4.4 protected
  • 1.4.3 protected
  • 1.4.2 protected
  • 1.4.1 protected
  • 1.4.0 protected
  • v1.3.3 protected
  • v1.3.2 protected
  • v1.3.1 protected
  • v1.3.0 protected
  • v1.2.28 protected
  • v1.2.27 protected
  • v1.2.26 protected
27 results

install.sh

Blame
  • install.sh 811 B
    #!/bin/sh
    
    # Update submodules
    git submodule update --init  
    
    # Create directories
    mkdir -p app/libs/
    
    # Build AndroidSlidingUpPanel
    echo sdk.dir=$ANDROID_HOME > AndroidSlidingUpPanel/local.properties
    cd AndroidSlidingUpPanel
    gradle clean build
    cd ..
    cp AndroidSlidingUpPanel/library/build/outputs/aar/library-release.aar app/libs/library-release.aar
    rm AndroidSlidingUpPanel/local.properties
    
    # Build aspm
    echo sdk.dir=$ANDROID_HOME > aspm/local.properties
    cd aspm
    gradle clean build jar shadowJar
    cd ..
    cp aspm/annotations/build/libs/annotations.jar app/libs/annotations.jar
    cp aspm/compiler/build/libs/compiler-all.jar app/libs/compiler-all.jar
    rm aspm/local.properties
    
    # Build QuasselDroidNG
    echo sdk.dir=$ANDROID_HOME > local.properties
    gradle clean assembleRelease -x lintVitalRelease
    rm local.properties