Giter Club home page Giter Club logo

Comments (21)

michaldrabik avatar michaldrabik commented on August 15, 2024

Seems like a Android Studio/Gradle issue. Try cleaning the project (Build -> Clean Project) or invalidating cache (File -> Invalidate Caches/Restart)

from kontakt-beacon-admin-sample-app.

jun99999 avatar jun99999 commented on August 15, 2024

Thanks for your suggestions, however after I restart and clean it. Still looks same. Do you mind help me in teamviewer?

image
image
image
image

image

from kontakt-beacon-admin-sample-app.

michaldrabik avatar michaldrabik commented on August 15, 2024

Seems like androidToolsVersion variable is missing as stated in the error message. Check out this project's build.gradle HERE and use it in your project.

from kontakt-beacon-admin-sample-app.

jun99999 avatar jun99999 commented on August 15, 2024

Hello, I paste the coding to the page, but keep showing the build.gardle problem.

image
image

from kontakt-beacon-admin-sample-app.

jun99999 avatar jun99999 commented on August 15, 2024

image
image
image

I think there have some problems with the SDK

from kontakt-beacon-admin-sample-app.

michaldrabik avatar michaldrabik commented on August 15, 2024

It's not SDK problem but with the gradle file. You are missing packagingOptions in android {} tag:

android {
    compileSdkVersion 23
    buildToolsVersion '23.0.3'

    defaultConfig {
        applicationId "com.kontakt.sample"
        minSdkVersion 18
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }

    packagingOptions {
        exclude 'main/AndroidManifest.xml'
    }

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

from kontakt-beacon-admin-sample-app.

jun99999 avatar jun99999 commented on August 15, 2024

image
I have it just not screenshot completed.

from kontakt-beacon-admin-sample-app.

michaldrabik avatar michaldrabik commented on August 15, 2024

Sorry I don't have time for TeamViewer etc. Can you share this project with me somehow? Upload to Github or send me a .zip archive. It'll be faster and easier that way.

from kontakt-beacon-admin-sample-app.

jun99999 avatar jun99999 commented on August 15, 2024

Thanks for your kindness, [image: Inline image 1]

I upload to the Google Driver. You can download here.

On Tue, Aug 2, 2016 at 2:30 PM, Michal Drabik [email protected]
wrote:

Sorry I don't have time for TeamViewer etc. Can you share this project
with me somehow? Upload to Github or send me a .zip archive. It'll be
faster and easier that way.


You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
#17 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AT0rnuTbXFeIZEdaaBuDkOGfMidpH8Djks5qbuQDgaJpZM4JaOAb
.

from kontakt-beacon-admin-sample-app.

michaldrabik avatar michaldrabik commented on August 15, 2024

@jun99999 Can't see any link.

from kontakt-beacon-admin-sample-app.

jun99999 avatar jun99999 commented on August 15, 2024

https://drive.google.com/drive/my-drive

image

you click the share with me.

from kontakt-beacon-admin-sample-app.

michaldrabik avatar michaldrabik commented on August 15, 2024

Didn't get anything. I guess you need to right-click the archive and use Share or Get Sharable Link option.

from kontakt-beacon-admin-sample-app.

jun99999 avatar jun99999 commented on August 15, 2024

https://drive.google.com/a/elixirtech.com/file/d/0B7CgiPXFfmZ3OE0tS0ttQk9QLUU/view?usp=sharing

On Tue, Aug 2, 2016 at 2:53 PM, Michal Drabik [email protected]
wrote:

Didn't get anything. I guess you need to right-click the archive and Use
Share or Get Sharable Link option.


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
#17 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AT0rnpogHuRwbBr3xguL5xmmYnVb7RuQks5qbulPgaJpZM4JaOAb
.

from kontakt-beacon-admin-sample-app.

michaldrabik avatar michaldrabik commented on August 15, 2024

@jun99999 https://drive.google.com/open?id=0B-sOINpYt_YMcGcwQ2FCQ095Y2s
Fixed gradle errors. It now builds ok on my computer but there are still some layouts missing. I guess you need to add them by yourself. Regards

from kontakt-beacon-admin-sample-app.

jun99999 avatar jun99999 commented on August 15, 2024

I expressed my great appreciation to you, Thank you so much.

from kontakt-beacon-admin-sample-app.

jun99999 avatar jun99999 commented on August 15, 2024

[image: Inline image 1]
sorry for this, after I import yours, in my computer still the same.

On Tue, Aug 2, 2016 at 2:54 PM, Zijun Yang [email protected] wrote:

https://drive.google.com/a/elixirtech.com/file/d/0B7CgiPXFfmZ3OE0tS0ttQk9QLUU/view?usp=sharing

On Tue, Aug 2, 2016 at 2:53 PM, Michal Drabik [email protected]
wrote:

Didn't get anything. I guess you need to right-click the archive and Use
Share or Get Sharable Link option.


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
#17 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AT0rnpogHuRwbBr3xguL5xmmYnVb7RuQks5qbulPgaJpZM4JaOAb
.

from kontakt-beacon-admin-sample-app.

michaldrabik avatar michaldrabik commented on August 15, 2024

Then I really don't know how i can be more of a help. My advice would be to start new Android Studio project and add things one by one depending on your needs.

from kontakt-beacon-admin-sample-app.

jun99999 avatar jun99999 commented on August 15, 2024

Okay, thank you . May I ask you about the Lambda expression . can I use the
API 19 to support this language in Android studio? Since I only can use the
API24 to compile the code. however the android device only can support
lower API. So I have no idea what to do with this situation.
https://drive.google.com/a/elixirtech.com/file/d/0B7CgiPXFfmZ3NzNUcWJDRml3eVU/view?usp=sharing

By the way can you import my coding and show in your physical android
device?

Best regards
Jun

On Tue, Aug 2, 2016 at 3:50 PM, Michal Drabik [email protected]
wrote:

Then I really don't know how i can be more of a help. My advice would be
to start new Android Studio project and add things one by one depending on
your needs.


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
#17 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AT0rnumI5Wrc3Zbxojht-vdrweNFwBquks5qbvbBgaJpZM4JaOAb
.

from kontakt-beacon-admin-sample-app.

michaldrabik avatar michaldrabik commented on August 15, 2024

API level has nothing to do with Lambda. Java matters. Unfortunatly Android doesn't fully support Java 8 for now. If you want lambda you need to use something like Retrolambda

from kontakt-beacon-admin-sample-app.

jun99999 avatar jun99999 commented on August 15, 2024

Thanks for your guidance, so how to change in my coding?

On Tue, Aug 2, 2016 at 4:12 PM, Michal Drabik [email protected]
wrote:

API level has nothing to do with Lambda. Java matters. Unfortunatly
Android doesn't fully support Java 8 for now. If you want lambda you need
to use something like Retrolambda
https://github.com/evant/gradle-retrolambda


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
#17 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AT0rnl_3vDKi5z0b2Fq81BwKtvJsNi3Vks5qbvwDgaJpZM4JaOAb
.

from kontakt-beacon-admin-sample-app.

jun99999 avatar jun99999 commented on August 15, 2024

Good moring Michal, I import the project you help me again. It shows no
error, but cannot run. What should I edit?
[image: Inline image 1]

[image: Inline image 2]

Thank you

On Tue, Aug 2, 2016 at 4:14 PM, Zijun Yang [email protected] wrote:

Thanks for your guidance, so how to change in my coding?

On Tue, Aug 2, 2016 at 4:12 PM, Michal Drabik [email protected]
wrote:

API level has nothing to do with Lambda. Java matters. Unfortunatly
Android doesn't fully support Java 8 for now. If you want lambda you need
to use something like Retrolambda
https://github.com/evant/gradle-retrolambda


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
#17 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AT0rnl_3vDKi5z0b2Fq81BwKtvJsNi3Vks5qbvwDgaJpZM4JaOAb
.

from kontakt-beacon-admin-sample-app.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.