Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1b28fa17 authored by vince-bourgmayer's avatar vince-bourgmayer
Browse files

Update Readme and Manifest

parent b4022619
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
      </value>
    </option>
  </component>
  <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
  <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="1.8" project-jdk-type="JavaSDK">
    <output url="file://$PROJECT_DIR$/build/classes" />
  </component>
  <component name="ProjectType">
+5 −4
Original line number Diff line number Diff line
@@ -14,8 +14,9 @@ Check the wiki for more information
#### TODO:
This is the current pending goal List:

+ Handle lack of space remotly and localy
+ When a folder is remove from app's db, remove also syncedFile bound to it 
+ issue # 0 : apps crash if request are too long and fails because of that
+ issue # 4 : When an "initial" folder (= created by initializerService) is removed from server, it won't never be sync again, even if recreated
+ Handle lack of space localy
+ Issue # 0 : apps crash if request are too long and fails because of that
+ Add Unit test
+ Restat after few minutes the initializationService while it fails or the user doesn't disable sync.

+6 −6
Original line number Diff line number Diff line
buildscript {
    repositories {
    /*repositories {
        maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
    }
    }*/
}
import java.text.SimpleDateFormat;
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
//apply plugin: 'io.fabric'
def versionMajor = 1

def buildTime() {
@@ -49,7 +49,7 @@ android {
}
repositories {
    maven { url "https://jitpack.io" }
    maven { url 'https://maven.fabric.io/public' }
    //maven { url 'https://maven.fabric.io/public' }
}

dependencies {
@@ -62,9 +62,9 @@ dependencies {
    androidTestImplementation 'com.android.support:support-annotations:27.1.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    api 'com.github.nextcloud:android-library:1.1.0'
    api('com.crashlytics.sdk.android:crashlytics:2.9.2@aar') {
    /*api('com.crashlytics.sdk.android:crashlytics:2.9.2@aar') {
        transitive = true;
    }
    }*/
    api 'com.android.support:support-annotations:27.1.1'

}
+11 −3
Original line number Diff line number Diff line
@@ -40,7 +40,15 @@ http://www.gnu.org/licenses/gpl.html
            android:enabled="true"
            android:exported="true">
            <intent-filter>
                <action android:name="drive.services.initializerService" />
                <action android:name="drive.services.InitializerService" /> <!-- @TODO replace initializer by Initializer and ask Nihar to report the change to accountManager -->
            </intent-filter>
        </service>

        <service android:name=".services.ResetService"
            android:enabled="true"
            android:exported="true">
            <intent-filter>
                <action android:name="drive.services.ResetService" />
            </intent-filter>
        </service>
        <service android:name=".jobs.ScannerJob"
@@ -62,8 +70,8 @@ http://www.gnu.org/licenses/gpl.html
                <action android:name="android.intent.action.MY_PACKAGE_REPLACED"/>
            </intent-filter>
        </receiver>
        <meta-data
        <!--<meta-data
            android:name="io.fabric.ApiKey"
            android:value="63e8fd2ffc15b7b187bd369a9c0535e9fe151e8a" />
            android:value="63e8fd2ffc15b7b187bd369a9c0535e9fe151e8a" />-->
    </application>
</manifest>
Loading