google-recorder icon indicating copy to clipboard operation
google-recorder copied to clipboard

Project Abandoned?

Open JD2542 opened this issue 5 years ago • 8 comments

Is this not being updated? The latest version of Google Recorder is v1.1.289058594, but the latest release is v1.1.284933798. Also, how would I be able to do this myself on Windows?

JD2542 avatar May 08 '20 23:05 JD2542

Sorry, I didn't check for version number updates regularly due to no newer changelog provided in the updated version.

Also, how would I be able to do this myself on Windows?

You can use Windows Subsystem for Linux (WSL). Also, you need a keystore generated by keytool.

Xmader avatar May 09 '20 05:05 Xmader

The v1.1.289058594 version is released.

Xmader avatar May 09 '20 05:05 Xmader

@Xmader can you please check my issue https://github.com/Xmader/google-recorder/issues/1

nm17 avatar May 09 '20 11:05 nm17

The app is no longer restricted to PIXEL devices. See here: https://techpp.com/2019/11/01/download-google-recorder-apk-live-transcribe/

So, you don't have to sodomize Google anymore :smirk:

dimitry-ishenko avatar May 16 '20 23:05 dimitry-ishenko

The app is no longer restricted to PIXEL devices. See here: https://techpp.com/2019/11/01/download-google-recorder-apk-live-transcribe/

So, you don't have to sodomize Google anymore smirk

The article is true only for v1.0. I can't even get Google Recorder v1.1 working on my Pixel XL (first gen).

Xmader avatar May 17 '20 10:05 Xmader

@Xmader well, FWIW I am running the latest version on a non-PIXEL device. And a on a 1st gen PIXEL installed from the app store.

dimitry-ishenko avatar May 17 '20 14:05 dimitry-ishenko

I am running the latest version on a non-PIXEL device

How can I get the exception not thrown in the application's main class on devices without the com.google.android.feature.PIXEL_2017_EXPERIENCE system feature (which should only present on Pixel 2 and later)?

pseudocode

package com.google.android.apps.recorder.ui.application;

import android.app.Application;

public class RecorderApplication extends Application {
    // …
    public void onCreate() {
        super.onCreate();
        if (isDevBuild() || getPackageManager().hasSystemFeature("com.google.android.feature.PIXEL_2017_EXPERIENCE")) {
            // …
            return;
        }
        throw new IllegalStateException("Cannot start Recorder on unsupported device");
    }
    // …
}

And a on a 1st gen PIXEL installed from the app store.

What?

Xmader avatar May 17 '20 21:05 Xmader

Heh weird... I am now also getting the "incompatible" message for the PIXEL.

But it is running on my ODROID with LineageOS:

Screenshot from 2020-05-17 18-02-35

I wonder if LineageOS is fooling it somehow?

dimitry-ishenko avatar May 17 '20 22:05 dimitry-ishenko