Wednesday, June 1, 2016

ERROR: build.xml:taskdef A class needed by class com.android.ant.GetUiTargetTask cannot be found: com/android/utils/ILogger

ERROR: ~/.buildozer/android/platform/android-sdk-XX/tools/ant/build.xml:taskdef A class needed by class com.android.ant.GetUiTargetTask cannot be found: com/android/utils/ILogger Context: Running ant debug for buildozer SOLUTION: Back up the Lib folder in /usr/share/ant (check by using whereis ant) of original ant installation....

Tuesday, May 31, 2016

How to input ${sdk.dir} to build.xml | Apache Ant | Ubuntu

Assuming, $ANDROID_HOME (environmental variable ) refers to android sdk directory, you can inject the ANDROID_HOME  into the sdk.dir property using the following ant command. $ ant debug -Dsdk.dir=$ANDROID_HOME ANDROID_HOME must be an absolute path...

Mouse cursor not visible | Ubuntu

SOLUTION: sudo modprobe -r psmouse sudo modprobe psmouse If you enjoyed this post, make sure you subscribe to my RSS feed! Comments are encouraged ...

android update project: command not found | Ubuntu

Context: Running android update project ERROR: command not found Solution: export ANDROID_HOME=/Applications/android-sdks Add Tools to PATH export PATH=${PATH}:${ANDROID_HOME}/tools Add platform-tools to PATH export PATH=${PATH}:${ANDROID_HOME}/platform-tools If you enjoyed this post, make sure you subscribe to...

ERROR: subprocess.CalledProcessError: Command '['ant', 'debug']' returned non-zero exit status 1 | Ubuntu | Buildozer

Context: Running buildozer android debug ERROR: subprocess.CalledProcessError: Command '['ant', 'debug']' returned non-zero exit status 1 SOLUTION: Go to ~/.buildozer/android/platform/android-sdk-24/tools/ant Run ant debug You will find issues. Sort them out. If you enjoyed this post, make...

Monday, May 30, 2016

ERROR: Target id 'android-xx' is not valid. Use 'android list targets' to get the target ids | Buildozer | Ubuntu

ERROR: Target id 'android-xx' is not valid. Use 'android list targets' to get the target ids. ... ... ... File "/usr/lib/python2.7/subprocess.py", line 541, in check_call     raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command '['ant', 'debug']'...

ANT version change | Buildozer | Ubuntu

Type which ant in terminal.  Mine resulted with /usr/bin/ant. If apache ant is not installed already, you might get an error. Uncomment #android.ant_path = line in buildozer.spec use android.ant_path = /usr/bin/ant  Now you can control the...

ERROR: ant/build.xml : Unable to resolve project target 'android-19 | Buildozer | Ubuntu | Android

I am trying to build apk using buildozer and below is the error I've encountered: ant/build.xml :  Unable to resolve project target 'android-19 ... ... ... Traceback (most recent call last):   File "build.py",...

Solution: # Aidl not found, please install it | Ubuntu | Buildozer

ERROR: # Check that aidl can be executed # build-tools folder not found /home/raviteja/.buildozer/android/platform/android-sdk-24/build-tools # Search for Aidl # Aidl not found, please install it. SOLUTION: Above error says build-tools folder is not found....

Solution: E: Sub-process /usr/bin/dpkg returned an error code (1) | Ubuntu

gksudo nautilus Navigate via nautilus to: /var/lib/dpkg/info Search for: package name .. "openjdk-9-jdk" in my case Delete them. close nautilus sudo apt-get update If you enjoyed this post, make sure you subscribe to my...

Wednesday, April 27, 2016

Django | auth_user.last_login ERROR

When tried to create super user using the command python manage.py createsuperuser, it takes all the inputs correctly but throws below error at last. ERROR: Django.db.utils.IntegrityError: NOT NULL constraint failed: auth_user.last_login SOLUTION:  python manage.py...

Sunday, April 24, 2016

Django | Template extending

[ Article Copied from here. ] It means that you can use the same parts of your HTML for different pages of your website. Templates help when you want to use the same information/layout...

Django | Create URLs | Create Views | Create Templates

1. Create URLs We want 'http://127.0.0.1:8000/' to be a homepage of our Application and display custom design / content. We also want to keep the AppName/urls.py file clean, so we will import urls from...

Django | Create simple Website and App

1. Install Django Download the official release.  (pip install is a good choice) Once all the files finish downloading, we need to make sure our local Python installation is aware that Django exists on...

Saturday, April 23, 2016

Django | __init__() got an unexpected keyword argument 'maxlength'

TypeError: __init__() got an unexpected keyword argument 'maxlength' This problem arises when you are using a newer version of Django. Since 1.0 (or actually, somewhere in 0.97) Django switched to max_length instead of maxlength. So,...

Django default Admin Username and Password

In earlier versions of Django, when syncdb command is run, it used to ask for super user creation. But the latest versions are not using syncdb command. Here is an article related to it....

Django | DoesNotExist at /admin/login/ Site matching query does not exist

When typed  http://127.0.0.1:8000/admin/ into browser's address bar, I've encountered the following error. I found that this is due to incorrect configuration inside settings.py file. You don't really need the sites framework if you only...

AttributeError: 'AdminSite' object has no attribute 'root' | Django

Your url for admin should be: url(r'^admin/', admin.site.urls) This would be available by default in urls.py file unless you or some program change it. It should not  be (r'^admin/(.*)', admin.site.root) This is a change...

Unknown command: 'syncdb' in Python | Django

If you try to use python manage.py syncdb in latest version of Django, it throws the following error. Unknown command: 'syncdb' Type 'manage.py help' for usage. You won't find any syncdb command in help too....

Add to PYTHONPATH

If you're using bash (on a Mac or GNU/Linux distro), add this to your ~/.bashrc export PYTHONPATH=$PYTHONPATH:/my/other/path Make sure the directory you point to has at the topmost init.py file in your directory structure....

Monday, April 4, 2016

Connectify for Ubuntu | Works for Android

The pre-installed Network Manager in Unity does not support Access Point (AP) mode which is required for Android devices. Fortunately, KDE’s connection editor support this mode. Below is how to do it yourself: 1....

Page 1 of 49123»