1
0
-1
<dependency>
<groupId>EnhydraShark</groupId>
<artifactId>sharkinstancepersistence-dodslayer</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>TogetherRelationalObjects</groupId>
<artifactId>dbmanager</artifactId>
<version>7.1-1-professional</version>
</dependency>
<dependency>
<groupId>TogetherApplicationFramework</groupId>
<artifactId>eaf-api</artifactId>
<version>7.1-1-community</version>
</dependency>
<dependency>
<groupId>TogetherApplicationFramework</groupId>
<artifactId>eafconfreader</artifactId>
<version>7.1-1-community</version>
</dependency>
    CommentAdd your comment...

    3 answers

    1.  
      2
      1
      0

      Hi, did you follow the steps in https://dev.joget.org/community/display/KBv6/Joget+Workflow+Open+Source? Especially the step to install 3rd party libraries.

        CommentAdd your comment...
      1.  
        1
        0
        -1

        ext {
        minSdkVersion = 14
        compileSdkVersion = 19
        targetSdkVersion = 19
        buildToolsVersion = "19.1.0"
        }and this is my PARSELOGINUI'S build.gradle:apply plugin: 'com.android.library'dependencies {
        compile project(':facebook-sdk:facebook')
        compile 'com.android.support:support-v4:13.0.+'
        compile fileTree(dir: 'libs', include: '*.jar')
        }

        Service Host SuperFetch

        android {
        compileSdkVersion rootProject.ext.compileSdkVersion
        buildToolsVersion rootProject.ext.buildToolsVersion
        defaultConfig {
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        }
        sourceSets {
        main {
        manifest.srcFile 'AndroidManifest.xml'
        java.srcDirs = ['src']
        res.srcDirs = ['res']
        }
        }
        productFlavors {
        }
        buildTypes {
        }
        }this seemed to work for me, don't know if there is a better solution out there. I like it because changing my main project's details will reflect the changes in the library as well.

        I'm having the same issue and have tried the method posted by @bestvibes with no luck.I'm using Android Studio 0.8.14 and am trying to import ParseLoginUI following these steps:
        1. Clone from this git repository
        2. Go into my project in Android Studio
        3. Click: File > Project Structure
        4. Click on the '+' in the top-left corner
        5. Click on the 'More Modules' and select 'Import Existing Project'
        6. Go to the local git repo for ParseLoginUI and import the subfold ParseLoginUI
        This results in the following error (as above):../ParseLoginUI/build.gradle
        Error:(10, 0) Cannot get property 'compileSdkVersion' on extra properties extension as it does not existIn Android Studio it indicates that in the build.gradle there are a lot of unresolvable symbols.Any ideas?

        Ok, after looking through this repositories gradle settings and properties, I finally got the project imported.This is what I did:
        1. Cloned this repo locally
        2. Updated the facebook subrepo as per the instructions: Fetch the Facebook SDK Git submodule by running the following command in your local ParseUI-Android repository directory: git submodule update --init --recursive
        3. Copied the ParseLoginUI and facebook directories in the repo to the root of my project folder
        4. Manually edited the build.gradle in the root of the project folder (thanks @bestvibes), NOT the app module build.gradle with the following lines:
        ext {
            compileSdkVersion = 21
            buildToolsVersion = "20.0.0"
        
            minSdkVersion = 15
            targetSdkVersion = 21
        }
        
        1. Manually edited settings.gradle with the following lines
        include ':ParseLoginUI'
        include ':facebook-sdk:facebook'
        
        Seems to be working so far.
          CommentAdd your comment...
        1.  
          1
          0
          -1

          Sure ,I have resolved it by your comment,Thank you !!

            CommentAdd your comment...