Git Product home page Git Product logo

androidscreencast's Introduction

GitHub release GitHub license

Minimal Mistakes is a flexible two-column Jekyll theme. Perfect for hosting your personal site, blog, or portfolio on GitHub or self-hosting on your own server. As the name implies --- styling is purposely minimalistic to be enhanced and customized by you ๐Ÿ˜„.

See what's new in the CHANGELOG.

Minimal Mistakes live preview

The theme includes responsive layouts (single, archive, and splash pages) that look great on mobile and desktop browsers.

layout examples

Notable Features

  • Compatible with Jekyll 3.x and GitHub Pages
  • Support for Jekyll's built-in Sass/SCSS preprocessor
  • Several layout options (single, archive, splash pages)
  • SEO optimized with support for Twitter Cards and Open Graph data
  • Optional header images, sidebars, table of contents, galleries, related posts, breadcrumb links, and more.
  • Optional comments (Disqus, Facebook, Google+, Discourse, static-based via Staticman, and custom).
  • Optional analytics (Google Analytics and custom).
  • UI localized text: English (default), Spanish, French, and Turkish.

Demo Pages

Name Description
Post with Header Image A post with a large header image.
HTML Tags and Formatting Post A variety of common markup showing how the theme styles them.
Syntax Highlighting Post Post displaying highlighted code.
Post with a Gallery A post showing several images wrapped in <figure> elements.
Sample Collection Page Single page from a collection.
Categories Archive Posts grouped by category.
Tags Archive Posts grouped by tags.

For even more demo pages check the posts archive.


Contributing

Having trouble working with the theme? Found a typo in the documentation? Interested in adding a feature or fixing a bug? Then by all means submit an issue or pull request. If this is your first pull request, it may be helpful to read up on the GitHub Flow first.

Minimal Mistakes has been designed as a base for you to customize and fit your site's unique needs. Please keep this in mind when requesting features and/or submitting pull requests. If it's not something that most people will use, I probably won't consider it. When in doubt ask.

This goes for author sidebar links and "share button" additions -- I have no intention of merging in every possibly option, the essentials are there to get you started ๐Ÿ˜„.

Pull Requests

To help me out try to avoid creating pull requests on master and instead branch off of develop. It's much easier for me to test, merge, and roll them into new releases this way.


Credits

Creator

Michael Rose

Icons + Demo Images:

Other:


License

The MIT License (MIT)

Copyright (c) 2016 Michael Rose

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

androidscreencast's People

Watchers

 avatar

androidscreencast's Issues

Keyboard left arrow is not passed to the emulator/device

Device name :
emulator
Device rooted (yes/no) :
yes
Device OS version (1.5/1.6/2.0,...) :
1.6

Computer OS and version (Mac,Win,Linux,...) :
Mac OS X 10.6 Snow Leopard
Java version (java -version from command line) :
java version "1.6.0_15"
ADB version (adb -version from command line) :
Android Debug Bridge version 1.0.25
AndroidScreencast version :
0.4
What steps will reproduce the problem?
1. Start the emulator
2. Start AndroidScreencast
3. Press left arrow key on the host keyboard

What is the expected output? What do you see instead?
The key event is ignored. The key is interpreted as an Unknow key event (code = 
0)

Please provide any additional information below.
net.srcz.android.screencast.api.injector.KeyCodeConverter.java misses 
KeyEvent.VK_LEFT 
handling.

Please add

if(e.getKeyCode() == KeyEvent.VK_LEFT)
   code = ConstEvtKey.KEYCODE_DPAD_LEFT;

to getKeyCode method



Original issue reported on code.google.com by [email protected] on 24 Feb 2010 at 11:58

java.lang.reflect.InvocationTargetException

Device name : xt800
Device rooted (yes/no) : no
Device OS version (1.5/1.6/2.0,...) : 2.0

Computer OS and version (Mac,Win,Linux,...) :win
Java version (java -version from command line) :1.5
ADB version (adb -version from command line) :1.0.25
AndroidScreencast version :

What steps will reproduce the problem?
1.run javaws androidscreencast.jnlp
2.
3.

What is the expected output? What do you see instead?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 7 Feb 2010 at 9:48

Attachments:

java.lang.NullPointerException

Device name :
emulator
Device rooted (yes/no) :
yes
Device OS version (1.5/1.6/2.0,...) :
1.6

Computer OS and version (Mac,Win,Linux,...) :
Mac OS X 10.6 Snow Leopard
Java version (java -version from command line) :
1.6
ADB version (adb -version from command line) :
1.0.25
AndroidScreencast version :
0.4

What steps will reproduce the problem?
1. Select Record button
2. Press either Cancel or the close button without selecting anyfile
3. Press Record button again


What is the expected output? What do you see instead?
java.lang.NullPointerException is thrown

Please provide any additional information below.
The toggle button stays selected even if the user picked no file. The button 
should be unselected 
in case JFileChooser.showSaveDialog()'s return value is different from 
JFileChooser.APPROVE_OPTION

        private void startRecording() {
                JFileChooser jFileChooser = new JFileChooser();
                FileNameExtensionFilter filter = new FileNameExtensionFilter(
                                "Video file", "mov");
                jFileChooser.setFileFilter(filter);
                int returnVal = jFileChooser.showSaveDialog(this);
                if (returnVal == JFileChooser.APPROVE_OPTION) {
                        injector.screencapture.startRecording(jFileChooser
                                        .getSelectedFile());
                } 
               else {
                  jtbRecord.setSelected(false);
               }
        }


Original issue reported on code.google.com by [email protected] on 24 Feb 2010 at 12:05

Cannot tether Internet and use androidscreencast

What steps will reproduce the problem?
1.Enabling Internet tethering
2.
3.

What is the expected output? What do you see instead? Just stops working


What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 4 Jan 2010 at 6:12

NoClassDefFoundError: javax/swing/filechooser/FileNameExtensionFilter

What steps will reproduce the problem?
1. Open androidscreencast
2. Double Click on my device
3. Then crash

What is the expected output? What do you see instead?
I see an exception:

java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.jav
a:25)
    at java.lang.reflect.Method.invoke(Method.java:592)
    at com.sun.javaws.Launcher.executeApplication(Launcher.java:1509)
    at com.sun.javaws.Launcher.executeMainClass(Launcher.java:1447)
    at com.sun.javaws.Launcher.doLaunchApp(Launcher.java:1258)
    at com.sun.javaws.Launcher.run(Launcher.java:114)
    at java.lang.Thread.run(Thread.java:613)
Caused by: java.lang.NoClassDefFoundError: 
javax/swing/filechooser/FileNameExtensionFilter
    at net.srcz.android.screencast.Main.initialize(Main.java:54)
    at net.srcz.android.screencast.Main.<init>(Main.java:25)
    at net.srcz.android.screencast.Main.main(Main.java:103)
    ... 9 more



What version of the product are you using? On what operating system?
Mac OSX Leopard / HTC Dream

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 16 Dec 2009 at 10:32

  • Merged into: #27

How to be warned when a update has ceen released?

Really love your app and waiting for update to have better refresh rate, or 
hit point detection ( see malgon33 issue)

Do we need to connect to google code page every day to know when an update is 
out, or do you plan to make a website/twitter/etc.. notifications?

thank a lot.

Original issue reported on code.google.com by [email protected] on 4 Feb 2010 at 12:24

Question about Single Click Execution

I often connect - disconnect - connect my droid while I'm at the office.
I have found that I need to execute the adb devices command before I run
the androidscreencast java file.

I created a bat file so I could just click on a single file and have it all
run:

c:\droid\tools\adb.exe devices
c:\droid\tools\adroidscreencast.jnlp

Problem is...it doesn't seem to run the jnlp file...nothing comes up.

Anyone give me a hint at how to get it all to run with a single click?

thanks,
Matt

Original issue reported on code.google.com by [email protected] on 21 Jan 2010 at 10:53

Shift Key and punctuation

 pressing the shift key on the PC turns on caps lock on the phone and can
not be turned off with out touching the phone

punctuation will not register on the phone from the PC 



Original issue reported on code.google.com by [email protected] on 11 Oct 2009 at 10:29

NoClassDefFoundError: javax/swing/filechooser/FileNameExtensionFilter

What steps will reproduce the problem?
1. Launch the jnlp from the site or from the command lin.
2. Observe unable to launch dialog.

What is the expected output? What do you see instead?
Expected to see the application.

What version of the product are you using? On what operating system?
MacTel 10.5.8

Please provide any additional information below.

Under the exception tab is this information:
java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.jav
a:25)
    at java.lang.reflect.Method.invoke(Method.java:592)
    at com.sun.javaws.Launcher.executeApplication(Launcher.java:1528)
    at com.sun.javaws.Launcher.executeMainClass(Launcher.java:1466)
    at com.sun.javaws.Launcher.doLaunchApp(Launcher.java:1277)
    at com.sun.javaws.Launcher.run(Launcher.java:117)
    at java.lang.Thread.run(Thread.java:613)
Caused by: java.lang.NoClassDefFoundError: 
javax/swing/filechooser/FileNameExtensionFilter
    at net.srcz.android.screencast.Main.initialize(Main.java:58)
    at net.srcz.android.screencast.Main.<init>(Main.java:25)
    at net.srcz.android.screencast.Main.main(Main.java:107)
    ... 9 more



Original issue reported on code.google.com by [email protected] on 14 Jan 2010 at 1:51

Attachments:

Desperate need for menu button.

What steps will reproduce the problem?
1. Apparently no way to use the hardware buttons (menu, back, power, search)
2.
3.

What is the expected output? What do you see instead?
I have gotten past the no back button by using Task Panel and everything
else but the menu button I feel I can do without, but I really need access
to the menu for some apps.  Any way to do this, any plans for including it?

What version of the product are you using? On what operating system?
Cyanogen 4.2.9
Ubuntu ADB SDKr04

Please provide any additional information below.
Great work, works incredibly well even through VPN remotely from miles away!

Original issue reported on code.google.com by pclawler on 18 Dec 2009 at 7:53

Display unreadable

What steps will reproduce the problem?
1.Initial start
2.
3.

What is the expected output? What do you see instead?
Phone on screen display is barely discrernable. Display has yellow bars
running through it

What version of the product are you using? On what operating system?
.3 on Vista 64 bit with Motorola droid

Please provide any additional information below.
Display is barely readable


Original issue reported on code.google.com by [email protected] on 23 Dec 2009 at 6:23

  • Merged into: #16

KeyCodeConverter

Device name :
Device rooted (yes/no) :
Device OS version (1.5/1.6/2.0,...) :

Computer OS and version (Mac,Win,Linux,...) :
Java version (java -version from command line) :
ADB version (adb version from command line) :
AndroidScreencast version :

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?


Please provide any additional information below.
Please add KeyEvent.VK_LEFT on KeyCodeConverter.java

Original issue reported on code.google.com by [email protected] on 27 Apr 2010 at 10:44

No mouse/keyboard control?

What steps will reproduce the problem?
When I use the new 0.2 release I no longer get the permission denied, and 
I get the "device" on my screen - but I cannot control it. Mouse and keys 
doesn't work. When I control the device on my Magic it displayes fine on 
the monitor...

What version of the product are you using? On what operating system?
Windows Vista Home Premium - service pack 1
Java 6 version 16
HTC Magic - firmware 1,5 Build 2.16.401.5 (No Root)
Android-sdk-windows-1.6_r1.zip


Original issue reported on code.google.com by kochhansen on 16 Oct 2009 at 7:56

Causes ADB Crash

What steps will reproduce the problem?
1. Trying to manipulate phone interface through computer. (Immediate)
2. Manipulating phone interface while viewing through computer. (Delayed)
3. Viewing static phone interface. (Longer delay)

What is the expected output? What do you see instead?
When performing any of the above actions, Windows alerts that ADB has failed.

What version of the product are you using? On what operating system?
Current version as of post on Windows XP Pro.

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 4 Jan 2010 at 11:39

(Enancement request) command line screen capture

Device name : emulator
Device rooted (yes/no) : yes
Device OS version (1.5/1.6/2.0,...) : 2.x

Computer OS and version (Mac,Win,Linux,...) : Windows
Java version (java -version from command line) : 1.6
ADB version (adb -version from command line) :

Enhancement request:

I'd like to launch this tool from the windows command line to capture the
current screen image.

Maybe an arg to the main() that would just take a snapshot instead of
launching the whole ui.




Original issue reported on code.google.com by [email protected] on 4 Feb 2010 at 3:42

Broken with unknown devices (Kaiser)

Device name : Kaiser (HTC TytnII)
Device rooted (yes/no) : yes
Device OS version (2.1) :

Computer OS and version : Ubuntu Linux 9.10 and Gentoo Linux
Java version : OpenJDK Runtime Environment (IcedTea6 1.6.1) (6b16-1.6.1-
3ubuntu1)
ADB version (adb version from command line) : Android Debug Bridge version 
1.0.25
AndroidScreencast version : Trunk

What steps will reproduce the problem?
1. Connect device to usb
2. run adb devices
3. Get the following result:
adb devices
List of devices attached 
????????????    device
4. run javaws '/home/andrea/Downloads/androidscreencast.jnlp'
5. Get the following result
java.lang.RuntimeException: java.lang.RuntimeException: 
java.io.IOException: device (????????????) request rejected: device not 
found
    at 
net.srcz.android.screencast.api.injector.Injector.uploadAgent(Injector.java
:52)
    at 
net.srcz.android.screencast.api.injector.Injector.init(Injector.java:162)
    at 
net.srcz.android.screencast.api.injector.Injector.access$0(Injector.java:15
5)
    at 
net.srcz.android.screencast.api.injector.Injector$1.run(Injector.java:26)
Caused by: java.lang.RuntimeException: java.io.IOException: device 
(????????????) request rejected: device not found
    at 
net.srcz.android.screencast.api.AndroidDevice.pushFile(AndroidDevice.java:5
1)
    at 
net.srcz.android.screencast.api.injector.Injector.uploadAgent(Injector.java
:49)
    ... 3 more
Caused by: java.io.IOException: device (????????????) request rejected: 
device not found
    at com.android.ddmlib.AdbHelper.setDevice(AdbHelper.java:726)
    at com.android.ddmlib.SyncService.openSync(SyncService.java:222)
    at com.android.ddmlib.Device.getSyncService(Device.java:246)
    at 
net.srcz.android.screencast.api.AndroidDevice.pushFile(AndroidDevice.java:4
2)
    ... 4 more





I know that my mobile is not an Android device (was a winmo phone) but I 
was wondering if it was possible to you not to crash if device is unknown 
and just continue using default settings.

Let me know if you need further details/tests


Original issue reported on code.google.com by [email protected] on 9 Mar 2010 at 4:58

No Keyboard: Can't type into application

What steps will reproduce the problem?
1.Install  on Ubuntu 9.04
2.Run it
3.Run a text application, like compose email
4. Attempt to write using PC keyboard.

What is the expected output? What do you see instead?
I expect to see the keyboard of my PC enter text in the Android text app.
Where there is a text input window, I should see letters appear as I type.

What version of the product are you using? On what operating system?
screencast 0_2
Ubuntu 9.04

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 21 Oct 2009 at 11:55

  • Merged into: #13

Skin support & wifi support

Add skins we can use to wrap around the captured screen. For example, a
Motorola Droid skin that makes the recorded video look like it was filmed
externally, showing the phone's case and screen. Make the hardware buttons
map to the skin.

Give us the ability to record audio coming from the phone's microphone to
go along with the video. This would allow us to set the phone on our desk
and talk as we record a tutorial video.

I'd like the option to work via WiFi instead of USB. There is another app
on the market called PicMe that works this way, but lacks some of the
functions found in this app.

Add these features and get the framerate decent and its an epic app!

Original issue reported on code.google.com by [email protected] on 22 Feb 2010 at 5:37

Timeout getting device list

What steps will reproduce the problem?
1. On Windows XP launch stop the adb daemon with: adb kill-server
2. Launch androidscreencast.jnlp
3. Observe "Unable to launch the application" error

What is the expected output? What do you see instead?
Expect to see the application launch. An error is displayed instead.

What version of the product are you using? On what operating system?
Windows XP (sp3). jnlp was run from website Jan 15th, 2010

Please provide any additional information below.
Please see attached files.

Original issue reported on code.google.com by [email protected] on 15 Jan 2010 at 8:52

Attachments:

Web Start File Name Should Never Change

The web start file name should always remain the same. this way people can
bookmark the file and always launch the "newest" version of the
application. By changing the name, users are unaware of this change and may
no longer be getting the "latest" version. 

Original issue reported on code.google.com by [email protected] on 19 Nov 2009 at 12:08

Resolution on Droid is compressed

What steps will reproduce the problem?
1. Launch app on Verizon Droid

What is the expected output? What do you see instead?
Crisp clean screen.

Instead I see messy compressed screen where fonts are poor

What version of the product are you using? On what operating system?
0.4, XP

Please provide any additional information below.

Droid resolution is 854ร—480, you size the screen at 512x336 in 
JFrameMain.java (jsp.setPreferredSize)

If that could be conditional based on device size, the screen would look 
much cleaner.

Thanks

Original issue reported on code.google.com by [email protected] on 29 Dec 2009 at 4:34

No video format appended to file name

What steps will reproduce the problem?
1. Start recording
2. Stop recording (how?0
3. check the file name  using windows.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 13 Nov 2009 at 6:36

building the androidscreencast-***.jnlp from source doesnt work

Computer OS and version (Mac,Win,Linux,...) : winXP
Java version (java -version from command line) : "1.6.0_18"
ADB version (adb -version from command line) : 1.0.25
AndroidScreencast version : r41

What steps will reproduce the problem?
1.edit androidscreencast.conf in root folder with local parameters
2.run "ant -v -f .\androidscreencast\build.xml"

What is the expected output? What do you see instead?

the result is: 
    [javac] Compiling 29 source files to
C:\androidscreencast\androidscreencast\bin
    [javac] Using modern compiler dropping
C:\androidscreencast\androidscreencast\ddmlib-DEV.jar from path as it
doesn't exist
[...]
BUILD FAILED

-------------------------------

i think in line 26 {ddmlib} should be {sdk-ddmlib} so I modified the
build.xml line 26:
 <javac nowarn="true" srcdir="${src}" destdir="${build}"
classpath="C:\android-sdk-windows\tools\lib\ddmlib.jar"/> 


this works here is my output 
http://snipt.net/embed/1ec56c7a67a9f4fa1a43807beffb40d9


Now I did change the "codebase" in my "androidscreencast-DEV.jnlp" to my
local "dist" dir.
codebase="file:///C:/androidscreencast/AndroidScreencast/dist"

it starts to load but I get this error:

java.lang.NullPointerException
    at javax.swing.ImageIcon.<init>(Unknown Source)
    at net.srcz.android.screencast.ui.JSplashScreen.<init>(Unknown Source)
    at net.srcz.android.screencast.Main.<init>(Unknown Source)
    at net.srcz.android.screencast.Main.main(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.sun.javaws.Launcher.executeApplication(Unknown Source)
    at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
    at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
    at com.sun.javaws.Launcher.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)


Original issue reported on code.google.com by [email protected] on 9 Feb 2010 at 12:00

Mouse not working on call window

What steps will reproduce the problem?
1. Receive call.
2. Can pickup call with call button only, not with mouse on the screen.
3. On the call status window the mouse doesn't work, so cannot do any 
actions on that window like active speakerphone etc...

What is the expected output? What do you see instead?
Ability to use mouse to pickup or end call. Ability to use mouse on call 
status window. 

What version of the product are you using? On what operating system?
Latest online version as of today on Windows 7 with Nexus One cell phone 
running Android 2.1 retail.

Original issue reported on code.google.com by [email protected] on 18 Jan 2010 at 9:25

Device list timed out

What steps will reproduce the problem?
1.installed sdk 
2.updated ADB device (working properly)
3.launched jnlp and began searching for device list but unable to connect
due to timed out.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?
most recent. vista

Please provide any additional information below.

Note sure whats wrong, any suggestions? great idea for a app. look forward
to using it. 

cheers

Original issue reported on code.google.com by [email protected] on 2 Dec 2009 at 11:48

Prevent sleep mode

Sleep mode breaks the connection between the device and the app. Prevent this.

Original issue reported on code.google.com by [email protected] on 21 Sep 2009 at 8:13

no special characters are issued from laptop keyboard

Device name :Galaxy
Device rooted (yes/no) :yes
Device OS version (1.5/1.6/2.0,...) :1.5

Computer OS and version (Mac,Win,Linux,...) :Fedora 12
Java version (java -version from command line) :1.6
ADB version (adb -version from command line) :1.0.20
AndroidScreencast version :

What steps will reproduce the problem?
1.connect to droid
2.get into messages
3.no special characters are input from laptop keyboard (ex. ?!@#$%), 

- the alpha chars works perfect 
- the numbers works perfect

What is the expected output? What do you see instead?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 6 Feb 2010 at 8:29

Timeout getting device list

Device name : Nexus One
Device rooted (yes/no) : No
Device OS version (1.5/1.6/2.0,...) : 2.1

Computer OS and version (Mac,Win,Linux,...) : Windows 7
Java version (java -version from command line) : 1.6.0_18
ADB version (adb version from command line) : 1.0.25
AndroidScreencast version : 2010.04.07

What steps will reproduce the problem?
1. run javaws androidscreencast.jnlp
2. you get the following exception
java.lang.RuntimeException: Timeout getting device list!
    at net.srcz.android.screencast.Main.waitDeviceList(Main.java:86)
    at net.srcz.android.screencast.Main.initialize(Main.java:37)
    at net.srcz.android.screencast.Main.<init>(Main.java:25)
    at net.srcz.android.screencast.Main.main(Main.java:107)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.sun.javaws.Launcher.executeApplication(Unknown Source)
    at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
    at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
    at com.sun.javaws.Launcher.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)



What is the expected output? What do you see instead?


Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 6 Apr 2010 at 11:54

java.lang.OutOfMemoryError

What steps will reproduce the problem?
1. Connect my non-rooted Motorola Droid to the system in debug mode and
mount is
2. launch android screencast app and attempt to connect to my droid with
agent specified as 127.0.0.1
3. I get the following exception back
java.lang.OutOfMemoryError: Java heap space
    at java.awt.image.DataBufferInt.<init>(Unknown Source)
    at java.awt.image.Raster.createPackedRaster(Unknown Source)
    at java.awt.image.DirectColorModel.createCompatibleWritableRaster(Unknown
Source)
    at java.awt.image.BufferedImage.<init>(Unknown Source)
    at
net.srcz.android.screencast.injector.ScreenCaptureThread.display(ScreenCaptureTh
read.java:168)
    at
net.srcz.android.screencast.injector.ScreenCaptureThread.fetchImage(ScreenCaptur
eThread.java:107)
    at
net.srcz.android.screencast.injector.ScreenCaptureThread.run(ScreenCaptureThread
.java:50)



What is the expected output? What do you see instead?
I'd like to see it running.

What version of the product are you using? On what operating system?
the latest

Please provide any additional information below.
Does my device need to be rooted? I am new with android so dont know much
about it. 

Original issue reported on code.google.com by [email protected] on 19 Nov 2009 at 11:32

View hit points

One great feature would be to show points hitten, on video.
So to detect pressure on phone screen, and to show a circle on 
androiscreencast application where screen have been touched.
Would be very useful to make applications video !

Original issue reported on code.google.com by [email protected] on 3 Feb 2010 at 9:48

Extra characters sent (@^) when Alt-Tab-ing

Device name : Nexus One
Device rooted (yes/no) : Yes
Device OS version (1.5/1.6/2.0,...) : CyanogenMod 5.0.2

Computer OS and version (Mac,Win,Linux,...) : Win XP SP3
Java version (java -version from command line) :
java version "1.6.0_13"
Java(TM) SE Runtime Environment (build 1.6.0_13-b03)
Java HotSpot(TM) Client VM (build 11.3-b02, mixed mode, sharing)
ADB version (adb -version from command line) : Android Debug Bridge version
1.0.25
AndroidScreencast version : As of right now

What steps will reproduce the problem?
1. Launch Terminal Emulator from the Nexus One
2. Leave the default shell running (sh)
3. Press Alt+Tab, then Alt+Tab back to AndroidScreencast

What is the expected output?
<nothing>

What do you see instead?
@^

Please provide any additional information below.
These characters are not visible in `ash`, but they affect what you type
(probably toggling some control sequence)

Original issue reported on code.google.com by [email protected] on 19 Feb 2010 at 12:28

netx: Invalid XML document syntax.

I use Debian GNU/Linux 64Bit
I got a HTC Hero running Firmware 1.5 (modaco rom 2.9)
I compiled the android source, so i get adb in my path and it works very
well (#adb shell, #adb pull etc...)
> # adb version
> Android Debug Bridge version 1.0.25

I downloaded androidscreencast v0.2 to my desktop.
I run it per jawaws a screen comes
I can choose the temp dir. it's set to "/tmp"
I click ok and the screen disappears
On the console the programm terminates and following message shows up.
> $ javaws androidscreencast-0_2.jnlp 
> netx: Invalid XML document syntax.

I tested it with user rights and root rights.

Original issue reported on code.google.com by [email protected] on 22 Nov 2009 at 10:36

Clicks are sent to X - 20 pixels. Event happens above actual click.

Device name : Nexus One
Device rooted (yes/no) : Yes (dev phone) 
Device OS version (2.1) :

Computer OS and version (Mac,Win,Linux,...) : OSX 10.5.8
Java version (java -version from command line) : 1.6.0_17-b04-248-9M3125
ADB version (adb version from command line) :1.0.25
AndroidScreencast version : 1.0

What steps will reproduce the problem?
1. Load http://ns2.keepfast.com/animation-enter-frame/enter-frame-4.html
2. Click anywhere on the green area and leave the mouse cursor still.
3. Please note that the futball floats to a position above where the click 
happened.

What is the expected output? What do you see instead?
The futball positions itself about 20px above where the mouse click happened.
The futball should center itself below where the mouse click happened.


Original issue reported on code.google.com by [email protected] on 25 Mar 2010 at 6:49

No mouse or keyboard on rooted droid

What steps will reproduce the problem?
1. start program through JAVAWS or from web link
2. Program starts fine
3. Display is good

What is the expected output? What do you see instead?
No keyboard or mouse control

What version of the product are you using? On what operating system?
.3 on Vista, Verizon Droid, rooted, Android 2.0.1


Please provide any additional information below.
No keyboard or mouse control



Original issue reported on code.google.com by [email protected] on 28 Dec 2009 at 8:59

  • Merged into: #13

Screen freezes when phone goes to sleep

Device name : Nexus One
Device rooted (yes/no) : Yes
Device OS version (1.5/1.6/2.0,...) : CyanogenMod 5.0.2

Computer OS and version (Mac,Win,Linux,...) : Win XP SP3
Java version (java -version from command line) :
java version "1.6.0_13"
Java(TM) SE Runtime Environment (build 1.6.0_13-b03)
Java HotSpot(TM) Client VM (build 11.3-b02, mixed mode, sharing)
ADB version (adb -version from command line) : Android Debug Bridge version
1.0.25
AndroidScreencast version : As of right now

What steps will reproduce the problem?
1. Let the phone turn off the screen, say after a minute of inactivity
2. AndroidScreencast's screen will look as if nothing happened
3. Type something in Androidscreencast. 

What do you see instead?
Input will be ignored until you resume the phone from standby.

Original issue reported on code.google.com by [email protected] on 19 Feb 2010 at 12:30

Screen quality

Device name : Droid
Device rooted (yes/no) : yes
Device OS version (1.5/1.6/2.0,...) : 2.0.1

Computer OS and version (Mac,Win,Linux,...) : Win32
Java version (java -version from command line) : Java 6.0.17
ADB version (adb version from command line) : 1.0.25
AndroidScreencast version : latest

What steps will reproduce the problem?
1. Connecting to a Motorola Droid

What is the expected output? What do you see instead?
The default resolution gives a pixelated output (as if it was downscaled
from actual resolution); not terrible, but noticable nonetheless. I've
attached a screencap of the current output; the issue is most noticeable
with text.

Original issue reported on code.google.com by [email protected] on 16 Mar 2010 at 12:10

Attachments:

Chopiness

Faster, better, stronger...

Using NDK ?

Original issue reported on code.google.com by [email protected] on 8 Sep 2009 at 9:42

Error on startup

What steps will reproduce the problem?
1. windows 7 32bit
2. java 6
3. htc magic

What is the expected output? What do you see instead? App will not load, 
get error "unable to load application"

Details:

code = 2 message = permission denied


What version of the product are you using? On what operating system?
windows 7 32bit latest


Please provide any additional information below.

screenshots attached 


Original issue reported on code.google.com by [email protected] on 25 Sep 2009 at 6:45

Attachments:

Permission denied

L'application ne demarre pas :

java.lang.RuntimeException: code = 2 message= Permission denied
    at 
net.srcz.android.screencast.injector.Injector.uploadAgent(Injector.java:84)
    at 
net.srcz.android.screencast.injector.Injector.<init>(Injector.java:31)
    at net.srcz.android.screencast.Main.initialize(Main.java:92)
    at net.srcz.android.screencast.Main.<init>(Main.java:73)
    at net.srcz.android.screencast.Main.main(Main.java:114)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.sun.javaws.Launcher.executeApplication(Unknown Source)
    at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
    at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
    at com.sun.javaws.Launcher.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)

Original issue reported on code.google.com by [email protected] on 10 Sep 2009 at 8:17

"AndroidManifest.xml file missing" when trying to build from svn source

Hi,

I'm trying to build androidscreencast on my own, because I can't wait until
a new release to fix issue #3 is released.

So I checked out the source from svn and now whatever I try to get Eclipse
recognize the AndroidScreencast project, I always end up with the message
"AndroidManifest.xml file missing".

I'm a newb with both Eclipse and Android development, and searching the web
I didn't find the answer to the question: is this AndroidManifest.xml
missing from the svn tree or is Eclipse supposed to build that file somehow?

Regards...
  Michael

Original issue reported on code.google.com by [email protected] on 14 Oct 2009 at 5:16

Clipboard support: copy/paste

It would be awesome to have clipboard support, e.g. copy/paste from
applications like Terminal Emulator, or Messages etc.

Original issue reported on code.google.com by [email protected] on 19 Feb 2010 at 12:19

Fails to start

What steps will reproduce the problem?
1. Use Windows 7 x64
2. Start Java App
3. Get Error Message


Please provide any additional information below.

Might be a driver issue, using the XP ADB drivers instead of vista drivers.

Original issue reported on code.google.com by [email protected] on 19 Sep 2009 at 7:34

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.