Questions tagged [rebuild]
343 questions
-1
votes
1 answer
screen rebuild not happening on state changes in flutter and riverpod
I am using Riverpod 2.x for state management in Flutter shopping app. CartItem qty is not changing until after a screen switch or a manual action that causes a screen refresh. The same is true when adding a product to the cart screen, the visual…

Obisi7
- 485
- 1
- 5
- 18
-1
votes
1 answer
Build vs. Rebuild: aren't the names wrong?
I understand the difference, and SO has a number of postings that explain in detail. But my question is just a curiosity: aren't the names backward? I'd like to think that "build" would mean "build as if its the first time" and "Re-build" would…

Elroy Flynn
- 3,032
- 1
- 24
- 33
-1
votes
1 answer
How to rebuild android source code(AOSP) after changing root path
I'd like to re-use the result of android build. When I copy the AOSP full source to another path, it fails to re-build. what I should do to re-use most of outputs only removing small parts of result ?
Is there any way?
for…

OfusJK
- 676
- 1
- 5
- 13
-1
votes
1 answer
Problem Django: Needs rebuild when i make HTML changes
The problem is as follows:
If I make changes to HTML / CSS, I have to re-build the project (django) so that I can refresh at DOM. If I make changes to the .py files, it is rebuilt automatically.
What can I do to rebuild them automatically when I…

Elisei Nicolae
- 293
- 2
- 12
-1
votes
2 answers
Android: What type of problems does project cleaning solve?
There are many types of programming errors like syntax, logical, and runtime errors and each one has a mechanism to solve it.
Cleaning project in Android Studio also solves other types of errors that occur in the project.
But what are the specific…

Ahmed Gad
- 691
- 1
- 7
- 26
-1
votes
2 answers
Why VS 2012 removes files from my destination directory?
I have seen answers to similar questions but I still don't understand this...
I have scripts that place all dependencies into a common BIN directory, which is outside all the projects directories.…

AlexeiOst
- 574
- 4
- 13
-1
votes
1 answer
Cannot read new files(JSON) after re-sign the APK
I want to add new JSON files in APK. I followed following steps:
Change the extension of my .apk to .zip
Open and remove the folder META-INF
Added my new files in assets/
change the extension to .apk
Use the jarsigner and zipalign with keystore.
I…

muthu murali
- 9
- 3
-2
votes
3 answers
-3
votes
3 answers
Unable to rebuild apk with apktool kali linux
hello guys failed to recompile an apk with apktool
this is the error log image:
I did all those commands:
apt-get install zipalign
apt-get update
apt-get upgrade
apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc++6
and I also already…

waleed
- 47
- 1
- 2
- 13
-4
votes
1 answer
Usage of Reverse Engineering/Rebuilding an APK
Recently I've been trying apktool but I wonder what is the use of reverse engineering/rebuilding an APK with a tool like apktool? I've already searched it but I didn't find the answer

VZNRRO
- 3
- 1
-4
votes
1 answer
Visual studio 2015 does not recompile under DEBUG
Such a problem. Studio under debug runs the previous version that was compiled. In the release assembly all the rules. The check boxes in the configuration manager are. In the settings of the studio where the assembly, put always recompile. Folders…

user1667616
- 33
- 2
- 7
-4
votes
2 answers
Advice about magento theme
I want to build website same as www.piquadro.com (with different products). The site is on Magento. Is there a way to scrap the theme?
I try it to rebuild it, but I have never worked with Magento and I need to finish it as soon as posible.

Main tance
- 11
- 1
- 6
-5
votes
1 answer
Java 10 'var' will spawn a bug without full rebuild
Please refer below example.
==== before ====
---- A.java ---
var userAccounts = userService.getUserAccounts();
--- B.java
class UserService {
public OldUserAccounts getUserAccounts();
}
==== after ====
---- A.java ---
var userAccounts =…

Akila
- 1,258
- 2
- 16
- 25