Skip to content

Commit

Permalink
Merge pull request #10 from zeoflow/compressor-kotlin-fix
Browse files Browse the repository at this point in the history
Created JCompressor
  • Loading branch information
teogor authored Oct 7, 2020
2 parents 09ef58a + 0cc8c63 commit cf726ae
Show file tree
Hide file tree
Showing 177 changed files with 585 additions and 355 deletions.
2 changes: 2 additions & 0 deletions flow-kit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ dependencies {
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.fragment:fragment:1.2.5'

implementation "io.reactivex.rxjava2:rxjava:2.1.0"

}

apply from: "${rootProject.projectDir}/flow-kit/maven-push.gradle"
Expand Down
4 changes: 2 additions & 2 deletions flow-kit/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ POM_NAME=FlowKit
POM_ARTIFACT_ID=flow-kit
POM_PACKAGING=aar

VERSION_NAME=1.0.1
VERSION_CODE=2
VERSION_NAME=1.1.0
VERSION_CODE=3
GROUP=com.zeoflow

POM_DESCRIPTION=An Android Library that comes with useful features and components
Expand Down
8 changes: 4 additions & 4 deletions flow-kit/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@
android:supportsRtl="true">

<provider
android:name=".initializer.ZeoFlowInitProvider"
android:name="com.zeoflow.initializer.ZeoFlowInitProvider"
android:authorities="${applicationId}.ZeoflowInitializer"
android:exported="false"
android:initOrder="100" />

<activity
android:name=".crash.reporter.ui.CrashReporterActivity"
android:name="com.zeoflow.crash.reporter.ui.CrashReporterActivity"
android:launchMode="singleTask"
android:taskAffinity="com.balsikandar.android.task"
android:theme="@style/CrashReporter.Theme" />

<activity
android:name=".crash.reporter.ui.LogMessageActivity"
android:parentActivityName=".crash.reporter.ui.CrashReporterActivity"
android:name="com.zeoflow.crash.reporter.ui.LogMessageActivity"
android:parentActivityName="com.zeoflow.crash.reporter.ui.CrashReporterActivity"
android:theme="@style/CrashReporter.Theme" />

<uses-library android:name="org.apache.http.legacy" android:required="false" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import android.content.Intent;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Retention;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import android.os.SystemClock;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* questions.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;


import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.zeoflow.flow.kit.annotation;
package com.zeoflow.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
Expand Down
Loading

0 comments on commit cf726ae

Please sign in to comment.