Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
69 changes: 50 additions & 19 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,33 +1,64 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

apply plugin: 'java'
version="1.3"
buildscript {
repositories {
google()
jcenter()

targetCompatibility = 1.8
sourceCompatibility = 1.8
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0-beta05'

jar.baseName='BigArrayList'

repositories {
mavenCentral()
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

configurations {
extraLibs
}
allprojects {
repositories {
google()
jcenter()

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.4'
compile group: 'de.ruedigermoeller', name: 'fst', version: '2.50'
extraLibs group: 'de.ruedigermoeller', name: 'fst', version: '2.50'
configurations.compile.extendsFrom(configurations.extraLibs)
}
}

apply plugin: 'com.android.library'

android {
compileSdkVersion 29

jar {
from {
configurations.extraLibs.collect { it.isDirectory() ? it : zipTree(it) }
defaultConfig {

minSdkVersion 19
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
}

configurations {
extraLibs
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

api group: 'de.ruedigermoeller', name: 'fst', version: '2.57'
extraLibs group: 'de.ruedigermoeller', name: 'fst', version: '2.57'
configurations.compile.extendsFrom(configurations.extraLibs)
}
20 changes: 20 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true

172 changes: 172 additions & 0 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

84 changes: 84 additions & 0 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file removed lib/commons-logging-1.1.1.jar
Binary file not shown.
Binary file removed lib/fst-2.50.jar
Binary file not shown.
Binary file removed lib/jackson-core-2.8.8.jar
Binary file not shown.
Binary file removed lib/java-util-1.9.0.jar
Binary file not shown.
Binary file removed lib/javassist-3.21.0-GA.jar
Binary file not shown.
Binary file removed lib/json-io-2.5.1.jar
Binary file not shown.
Binary file removed lib/objenesis-2.5.1.jar
Binary file not shown.
10 changes: 10 additions & 0 deletions local.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## This file is automatically generated by Android Studio.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file should *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
#
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
sdk.dir=C\:\\Users\\Pascal\\AppData\\Local\\Android\\Sdk
Empty file.
Empty file added oldlibs/fst-2.50.jar
Empty file.
Empty file added oldlibs/jackson-core-2.8.8.jar
Empty file.
Empty file added oldlibs/java-util-1.9.0.jar
Empty file.
Empty file added oldlibs/javassist-3.21.0-GA.jar
Empty file.
Empty file added oldlibs/json-io-2.5.1.jar
Empty file.
Empty file added oldlibs/objenesis-2.5.1.jar
Empty file.
21 changes: 21 additions & 0 deletions proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
Loading