Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
marzaha committed Aug 14, 2023
0 parents commit 796a6f0
Show file tree
Hide file tree
Showing 3,588 changed files with 1,185,019 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
/repo
3 changes: 3 additions & 0 deletions .idea/.gitignore

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

6 changes: 6 additions & 0 deletions .idea/compiler.xml

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

19 changes: 19 additions & 0 deletions .idea/gradle.xml

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

14 changes: 14 additions & 0 deletions .idea/misc.xml

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

6 changes: 6 additions & 0 deletions .idea/vcs.xml

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

1 change: 1 addition & 0 deletions LibreOffice/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
45 changes: 45 additions & 0 deletions LibreOffice/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
plugins {
id 'com.android.library'
}

android {
compileSdkVersion 28

defaultConfig {
minSdkVersion 22
targetSdkVersion 28
versionCode 1
versionName "1.0"

externalNativeBuild {
cmake {
abiFilters "arm64-v8a"
}
}

}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}

}

sourceSets {
main {
jniLibs.srcDirs = ['libs']
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
}
Empty file added LibreOffice/consumer-rules.pro
Empty file.
Binary file added LibreOffice/libs/arm64-v8a/libandroidapp.so
Binary file not shown.
Binary file added LibreOffice/libs/arm64-v8a/libc++_shared.so
Binary file not shown.
Binary file added LibreOffice/libs/arm64-v8a/libfreebl3.so
Binary file not shown.
Binary file added LibreOffice/libs/arm64-v8a/libnspr4.so
Binary file not shown.
Binary file added LibreOffice/libs/arm64-v8a/libnss3.so
Binary file not shown.
Binary file added LibreOffice/libs/arm64-v8a/libnssckbi.so
Binary file not shown.
Binary file added LibreOffice/libs/arm64-v8a/libnssdbm3.so
Binary file not shown.
Binary file added LibreOffice/libs/arm64-v8a/libnssutil3.so
Binary file not shown.
Binary file added LibreOffice/libs/arm64-v8a/libplc4.so
Binary file not shown.
Binary file added LibreOffice/libs/arm64-v8a/libplds4.so
Binary file not shown.
Binary file added LibreOffice/libs/arm64-v8a/libsmime3.so
Binary file not shown.
Binary file added LibreOffice/libs/arm64-v8a/libsoftokn3.so
Binary file not shown.
Binary file added LibreOffice/libs/arm64-v8a/libsqlite3.so
Binary file not shown.
Binary file added LibreOffice/libs/arm64-v8a/libssl3.so
Binary file not shown.
21 changes: 21 additions & 0 deletions LibreOffice/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
15 changes: 15 additions & 0 deletions LibreOffice/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.libreoffice.androidlib">

<application>

<activity
android:name="org.libreoffice.androidlib.LOActivity"
android:process=":libreoffice.show.file"
android:launchMode="singleTask">
</activity>

</application>

</manifest>
Loading

0 comments on commit 796a6f0

Please sign in to comment.