File tree Expand file tree Collapse file tree 6 files changed +66
-0
lines changed
Expand file tree Collapse file tree 6 files changed +66
-0
lines changed Original file line number Diff line number Diff line change 1+ # JetBrains IDE files
2+ .idea /
3+
14# Built application files
25* .apk
36* .aar
Original file line number Diff line number Diff line change 1+ /build
Original file line number Diff line number Diff line change 1+ plugins {
2+ id ' com.android.library'
3+ }
4+
5+ android {
6+ compileSdk 30
7+
8+ defaultConfig {
9+ minSdk 24
10+ targetSdk 30
11+ versionCode 1
12+ versionName " 1.0"
13+
14+ testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
15+ consumerProguardFiles " consumer-rules.pro"
16+ }
17+
18+ buildTypes {
19+ release {
20+ minifyEnabled false
21+ proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
22+ }
23+ }
24+ compileOptions {
25+ sourceCompatibility JavaVersion . VERSION_1_8
26+ targetCompatibility JavaVersion . VERSION_1_8
27+ }
28+ }
29+
30+ dependencies {
31+
32+ implementation ' com.android.support:appcompat-v7:28.0.0'
33+ testImplementation ' junit:junit:4.+'
34+ androidTestImplementation ' com.android.support.test:runner:1.0.2'
35+ androidTestImplementation ' com.android.support.test.espresso:espresso-core:3.0.2'
36+ }
Original file line number Diff line number Diff line change 1+ # Add project specific ProGuard rules here.
2+ # You can control the set of applied configuration files using the
3+ # proguardFiles setting in build.gradle.
4+ #
5+ # For more details, see
6+ # http://developer.android.com/guide/developing/tools/proguard.html
7+
8+ # If your project uses WebView with JS, uncomment the following
9+ # and specify the fully qualified class name to the JavaScript interface
10+ # class:
11+ #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+ # public *;
13+ #}
14+
15+ # Uncomment this to preserve the line number information for
16+ # debugging stack traces.
17+ #-keepattributes SourceFile,LineNumberTable
18+
19+ # If you keep the line number information, uncomment this to
20+ # hide the original source file name.
21+ #-renamesourcefileattribute SourceFile
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3+ package =" liblsl.android.builder" >
4+
5+ </manifest >
You can’t perform that action at this time.
0 commit comments