Skip to content

Commit

Permalink
feat: Enable firebase analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxGalaxy committed Aug 29, 2023
1 parent 83fec3b commit 93ed863
Show file tree
Hide file tree
Showing 57 changed files with 159 additions and 23 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.androidide
.gradle
app/build
app/google-services.json
editor/build
markdown-viewer/build
secrets.properties
Expand Down
20 changes: 18 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
plugins {
id 'com.android.application'
apply plugin: "com.android.application"

def secrets = System.getenv("GOOGLE_ANALYTICS")
def analyticsEnabled = secrets != null

if (analyticsEnabled) {
apply plugin: "com.google.gms.google-services"
}

def KEYSTOREPASSWORD = System.getenv('KEYSTOREPASSWORD')
Expand Down Expand Up @@ -51,6 +56,10 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
debuggable true
jniDebuggable true
}
}

compileOptions {
Expand Down Expand Up @@ -96,6 +105,13 @@ dependencies {
implementation "$editorGroupId:editor"
implementation "$editorGroupId:language-textmate"
implementation 'jp.co.cyberagent.android:gpuimage:2.1.0'

if (analyticsEnabled) {
new File("$projectDir/google-services.json").text = secrets;
}
implementation platform('com.google.firebase:firebase-bom:32.2.3')
implementation("com.google.firebase:firebase-crashlytics")
implementation("com.google.firebase:firebase-analytics")

implementation project(path:':markdown-viewer')
implementation project(path:':editor')
Expand Down
4 changes: 4 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@
<activity
android:name=".ui.activities.WebViewActivity"
android:exported="true" />

<meta-data
android:name="firebase_crashlytics_collection_enabled"
android:value="true" />
</application>

</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,21 @@
import androidx.core.app.ActivityCompat;
import androidx.core.content.ContextCompat;
import com.google.android.material.dialog.MaterialAlertDialogBuilder;
import com.google.firebase.analytics.FirebaseAnalytics;

public class MainActivity extends BaseActivity {

private boolean isRequested;
private MaterialAlertDialogBuilder MaterialDialog;
private TextView info;
private LinearLayout main;
private FirebaseAnalytics mFirebaseAnalytics;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mFirebaseAnalytics = FirebaseAnalytics.getInstance(this);

if (isStoagePermissionGranted(this)) {
startActivtyLogic();
Expand All @@ -70,6 +73,10 @@ public void onClick(View arg0) {
startActivity(intent);
}
});
Bundle bundle = new Bundle();
bundle.putString(FirebaseAnalytics.Param.SCREEN_NAME, "MainActivity");
bundle.putString(FirebaseAnalytics.Param.SCREEN_CLASS, "MainActivity");
mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.SCREEN_VIEW, bundle);
}

public static boolean isStoagePermissionGranted(Context context) {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.0'
classpath 'com.google.gms:google-services:4.3.3'
classpath "com.google.gms:google-services:4.3.15"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
o/classes
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
o/classes
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
i/classes_dex
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
i/classes_global-synthetics
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
o/classes
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
i/classes_dex
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
i/classes_dex
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
o/out
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.codd.editor.common" >

<uses-sdk android:minSdkVersion="21" />

</manifest>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
aarFormatVersion=1.0
aarMetadataVersion=1.0
minCompileSdk=1
minCompileSdkExtension=0
minAndroidGradlePluginVersion=1.0.0
Empty file.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
i/classes_global-synthetics
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
i/classes_global-synthetics
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.codd.editor.common" >

<uses-sdk android:minSdkVersion="21" />

</manifest>
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": 3,
"artifactType": {
"type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
"kind": "Directory"
},
"applicationId": "android.codd.editor.common",
"variantName": "release",
"elements": [
{
"type": "SINGLE",
"filters": [],
"attributes": [],
"outputFile": "AndroidManifest.xml"
}
],
"elementType": "File"
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
aarFormatVersion=1.0
aarMetadataVersion=1.0
minCompileSdk=1
minCompileSdkExtension=0
minAndroidGradlePluginVersion=1.0.0
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Empty file.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#Sun Aug 20 02:07:14 GMT 2023
#Mon Aug 28 23:53:27 GMT 2023
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/storage/emulated/0/.GitHub/Android-Code-Editor/common/src/main/jniLibs"/></dataSet><dataSet config="release" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/storage/emulated/0/.GitHub/Android-Code-Editor/common/src/release/jniLibs"/></dataSet></merger>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/storage/emulated/0/.GitHub/Android-Code-Editor/common/src/main/shaders"/></dataSet><dataSet config="release" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/storage/emulated/0/.GitHub/Android-Code-Editor/common/src/release/shaders"/></dataSet></merger>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/storage/emulated/0/.GitHub/Android-Code-Editor/common/src/main/assets"/></dataSet><dataSet config="release" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/storage/emulated/0/.GitHub/Android-Code-Editor/common/src/release/assets"/></dataSet><dataSet config="generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/shader_assets/release/out"/></dataSet></merger>
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#Mon Aug 28 14:12:45 GMT 2023
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/storage/emulated/0/.GitHub/Android-Code-Editor/common/src/main/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main" generated-set="main$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/storage/emulated/0/.GitHub/Android-Code-Editor/common/src/main/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="release$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/storage/emulated/0/.GitHub/Android-Code-Editor/common/src/release/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="release" generated-set="release$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/storage/emulated/0/.GitHub/Android-Code-Editor/common/src/release/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/storage/emulated/0/.GitHub/Android-Code-Editor/common/build/generated/res/resValues/release"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated" generated-set="generated$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/storage/emulated/0/.GitHub/Android-Code-Editor/common/build/generated/res/resValues/release"/></dataSet><mergedItems/></merger>
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mavenArtifactId=common
mavenGroupId=Android-Code-Editor
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
R_DEF: Internal format may change without notice
local
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
3 package="android.codd.editor.common" >
4
5 <uses-sdk android:minSdkVersion="21" />
5-->/storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml
5-->/storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml
6
7</manifest>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="android.codd.editor.common" >
4
5 <uses-sdk android:minSdkVersion="21" />
5-->/storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml
6
7</manifest>
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.codd.editor.common" >

<uses-sdk android:minSdkVersion="21" />

</manifest>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[]
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
android.codd.editor.common
36 changes: 18 additions & 18 deletions common/build/outputs/logs/manifest-merger-debug-report.txt
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
-- Merging decision tree log ---
manifest
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml:2:13-83
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml:2:13-83
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml:2:13-83
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml:2:13-83
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml:2:13-83
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml:2:13-83
package
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml:2:13-83
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml:2:13-83
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml
xmlns:android
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml:2:23-81
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml:2:23-81
uses-sdk
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml reason: use-sdk injection requested
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml reason: use-sdk injection requested
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml
android:targetSdkVersion
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml
android:minSdkVersion
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest4163885306322829159.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest2850141777115108143.xml
25 changes: 25 additions & 0 deletions common/build/outputs/logs/manifest-merger-release-report.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- Merging decision tree log ---
manifest
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml:2:13-83
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml:2:13-83
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml:2:13-83
package
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml:2:13-83
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml
xmlns:android
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml:2:23-81
uses-sdk
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml reason: use-sdk injection requested
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml
android:targetSdkVersion
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml
android:minSdkVersion
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml
ADDED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml
INJECTED from /storage/emulated/0/.GitHub/Android-Code-Editor/common/build/intermediates/tmp/ProcessLibraryManifest/release/tempAndroidManifest2897398101208354062.xml
Binary file not shown.

0 comments on commit 93ed863

Please sign in to comment.