### Build Android Debug Application Source: https://github.com/hidroh/materialistic/blob/master/README.md This command compiles and packages the debug version of the Android application using Gradle, preparing it for installation and testing. ```Gradle ./gradlew assembleDebug ``` -------------------------------- ### Project License Information Source: https://github.com/hidroh/materialistic/blob/master/README.md The project is licensed under the Apache License, Version 2.0, which permits free use, modification, and distribution under specified conditions, including attribution and non-endorsement. ```Text Copyright 2015 Ha Duy Trung Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ``` -------------------------------- ### Build Android Debug Application with LeakCanary Source: https://github.com/hidroh/materialistic/blob/master/README.md This command builds the debug version of the Android application, specifically enabling the LeakCanary library for runtime memory leak detection and analysis. ```Gradle ./gradlew assembleDebug -Pleak ``` -------------------------------- ### Apply Basic CSS Styling to PDF Viewer Body Source: https://github.com/hidroh/materialistic/blob/master/app/src/main/assets/pdf/index.html This CSS snippet styles the `` element of a PDF viewer. It sets the background color to a medium gray (`#808080`) and removes any default margins and padding, ensuring the PDF content fills the entire viewport without any surrounding whitespace. This is a common practice for full-screen PDF display. ```CSS body { background-color: #808080; margin: 0; padding: 0; } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.